Skip to content

Commit

Permalink
fix(cli): fix restart app after update
Browse files Browse the repository at this point in the history
  • Loading branch information
amnweb committed Oct 24, 2024
1 parent 330b96a commit 7c1fd04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/utils/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def update_yasb(YASB_VERSION):
combined_command = f'{install_command} && {run_after_command}'

# Finally run update and restart the application
subprocess.Popen(combined_command, shell=True, creationflags=subprocess.CREATE_NO_WINDOW)
subprocess.Popen(combined_command, shell=True)
sys.exit(0)

if __name__ == "__main__":
Expand Down

0 comments on commit 7c1fd04

Please sign in to comment.