Skip to content

Commit

Permalink
Another update command bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
irismessage committed Nov 8, 2021
1 parent 8bad262 commit dbc5317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakeboxed/cogs/owner.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async def update(self, ctx: commands.Context, commit_id: Optional[str]):
update_file
)

pip_upgrade_command = [sys.executable, 'install' '-r', str(REQUIREMENTS_FILE_PATH)]
pip_upgrade_command = [sys.executable, '-m', 'pip', 'install', '-r', str(REQUIREMENTS_FILE_PATH)]
pull_command = [str(self.pm2_binary), 'pull', self.pm2_name]
if commit_id is not None:
pull_command.append(commit_id)
Expand Down

0 comments on commit dbc5317

Please sign in to comment.