b/c...py: use EXIT_SUCCESS
and EXIT_FAILURE
This commit is contained in:
parent
65c54cf587
commit
27246e1b8b
@ -15,6 +15,8 @@ import subprocess
|
||||
|
||||
# Definitions
|
||||
BITS_PER_BYTE = 8
|
||||
EXIT_FAILURE = 1
|
||||
EXIT_SUCCESS = 0
|
||||
|
||||
# Paths
|
||||
PATHS = {
|
||||
@ -384,10 +386,13 @@ if __name__ == "__main__":
|
||||
]
|
||||
print(" ".join(command), flush=True)
|
||||
|
||||
if subprocess.run(command).returncode != 0:
|
||||
exit(1)
|
||||
if subprocess.run(command).returncode != EXIT_SUCCESS:
|
||||
exit(EXIT_FAILURE)
|
||||
|
||||
command = [OUTPUT_FILE]
|
||||
print(" ".join(command), flush=True)
|
||||
|
||||
exit(subprocess.run(command).returncode)
|
||||
if subprocess.run(command).returncode != EXIT_SUCCESS:
|
||||
exit(EXIT_FAILURE)
|
||||
|
||||
exit(EXIT_SUCCESS)
|
||||
|
Loading…
Reference in New Issue
Block a user