Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/spyder_updater/gui/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def start_install(self):

# Final command assembly
if os.name == 'nt':
cmd = ['start', '"Update Spyder"'] + sub_cmd
cmd = ['cmd', '/c'] + sub_cmd
elif sys.platform == "darwin":
cmd = [shutil.which("zsh")] + sub_cmd
else:
Expand Down
Loading