fix(install): Fix error with spaces in Python's path (#57)

This commit is contained in:
Karim shoair
2025-04-26 04:10:38 +03:00
parent e4bedc779b
commit a9dded34f4
+1 -1
View File
@@ -14,7 +14,7 @@ def get_package_dir():
def run_command(command, line):
print(f"Installing {line}...")
_ = subprocess.check_call(" ".join(command), shell=True)
_ = subprocess.check_call(command, shell=False) # nosec B603
# I meant to not use try except here