Skip to content

Commit

Permalink
Checking the exit code when enqueueing. RE:natcap#1784
Browse files Browse the repository at this point in the history
  • Loading branch information
phargogh committed Mar 6, 2025
1 parent 19d8818 commit 6e3d9e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion codesigning/enqueue-current-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def main():
)
print(f"Enqueueing URL for signing: {url}")
subprocess.run(
['python', os.path.join(this_dir, 'enqueue-binary.py'), url])
['python', os.path.join(this_dir, 'enqueue-binary.py'), url],
check=True)


if __name__ == '__main__':
Expand Down

0 comments on commit 6e3d9e5

Please sign in to comment.