Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
stationeros committed Oct 11, 2023
2 parents 23c5d46 + 09257cb commit c142fa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def main():
print()
print ('packaging trapheus for use ...')
try:
subprocess.run(package_command, shell=False, check=True)
subprocess.run(package_command, shell=True, check=True)
except subprocess.CalledProcessError as e:
print(f'Error: {e}')

Expand Down Expand Up @@ -46,7 +46,7 @@ def main():
print()
print('Deploying trapheus to AWS ...')
try:
subprocess.run(deploy_command, shell=False, check=True)
subprocess.run(deploy_command, shell=True, check=True)
except subprocess.CalledProcessError as e:
print(f'Error: {e}')

Expand Down

0 comments on commit c142fa9

Please sign in to comment.