Skip to content

Commit

Permalink
Merge pull request #34 from sahilsuman933/main
Browse files Browse the repository at this point in the history
fix: added shell equal to true
  • Loading branch information
moonlightnexus authored Dec 15, 2023
2 parents e4085d6 + 4658324 commit 8f6c388
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trustauthx/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ def main():
print(list_depends)
print("\nInstalling dependencies...")
def install(packages):
if packages == "pip install fastapi['all']":
subprocess.call("pip install fastapi[all]")
if packages == "pip install fastapi[all]":
subprocess.call("pip install fastapi[all]", shell=True)
return
if isinstance(packages, list):
for package in packages:subprocess.call(package, shell=True)
Expand Down

0 comments on commit 8f6c388

Please sign in to comment.