Skip to content

Commit

Permalink
Don't fail silently when trying to build windows distro.
Browse files Browse the repository at this point in the history
  • Loading branch information
brettle committed Jul 26, 2024
1 parent f50f08d commit b7781f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/packaging/windows_distro.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ def create_webots_bundle(self, include_commit_file):
else:
INNO_SETUP_HOME = "/C/Program Files (x86)/Inno Setup 6"
print('creating webots_setup.exe (takes long)\n')
subprocess.run([INNO_SETUP_HOME + '/iscc', '-Q', 'webots.iss'])
subprocess.run(
[INNO_SETUP_HOME + "/iscc", "-Q", "webots.iss"]
).check_returncode()

print('Done.')

Expand Down

0 comments on commit b7781f5

Please sign in to comment.