Skip to content

Commit

Permalink
0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishang committed Apr 15, 2023
1 parent 4719c52 commit 9b26987
Show file tree
Hide file tree
Showing 4 changed files with 182 additions and 212 deletions.
2 changes: 1 addition & 1 deletion InstallRelease/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.2"
__version__ = "0.3.3"
5 changes: 4 additions & 1 deletion InstallRelease/cli.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
import logging
import os

Expand Down Expand Up @@ -87,6 +88,8 @@ def upgrade(
| Upgrade all installed release, cli tools
"""
setLogger(quite, debug)
os.system(f"{sys.executable} -m pip install -U install-release")

_upgrade(force=force)


Expand Down Expand Up @@ -219,7 +222,7 @@ def me(
_v = InstallRelease.__version__

if update:
os.system("python3 -m pip install -U install-release")
os.system(f"{sys.executable} -m pip install -U install-release")
elif version:
rprint(_v)
else:
Expand Down
Loading

0 comments on commit 9b26987

Please sign in to comment.