fix(cli): Fix issue where install drops user into Python Shell

This commit is contained in:
Karim shoair
2025-03-05 03:28:07 +02:00
parent 7ed189aa4e
commit 087a85d615
+1 -1
View File
@@ -12,7 +12,7 @@ def get_package_dir():
def run_command(command, line):
print(f"Installing {line}...")
_ = subprocess.check_call(command, shell=True)
_ = subprocess.check_call(' '.join(command), shell=True)
# I meant to not use try except here