mirror of
https://github.com/ddworken/hishtory.git
synced 2024-11-22 08:14:02 +01:00
Move assertion that file is present to earlier in function so we fail fast
This commit is contained in:
parent
79a61c1b1d
commit
ed6d472409
@ -3,6 +3,9 @@ import time
|
||||
import subprocess
|
||||
|
||||
def main():
|
||||
assertPresentAndNotAscii("hishtory-darwin-arm64")
|
||||
assertPresentAndNotAscii("hishtory-darwin-amd64")
|
||||
|
||||
print("before sha1sum:")
|
||||
os.system("sha1sum hishtory-* 2>&1")
|
||||
print("before sha256sum:")
|
||||
@ -11,11 +14,6 @@ def main():
|
||||
print("file:")
|
||||
os.system("file hishtory-* 2>&1")
|
||||
|
||||
assertPresentAndNotAscii("hishtory-darwin-arm64")
|
||||
assertPresentAndNotAscii("hishtory-darwin-amd64")
|
||||
|
||||
# TODO: Update this file to fail if the input files don't exist
|
||||
|
||||
print("signing...")
|
||||
os.system("""
|
||||
set -emo pipefail
|
||||
|
Loading…
Reference in New Issue
Block a user