As per PEP-0394[1], there is no real concensus over what binary names Python has, specifically 'python' could be Python 3, Python 2, or not exist. However, everyone has a python3 interpreter and the scripts are all written for Python 3. Unify the shebangs so that the ~50% of shebangs that use python now use python3. [1] https://peps.python.org/pep-0394/
17 lines
337 B
Python
Executable File
17 lines
337 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import subprocess
|
|
import sys
|
|
|
|
args = sys.argv
|
|
|
|
expected_exit_code = args[1]
|
|
|
|
args = args[2:]
|
|
print("Running " + (" ".join(args)))
|
|
real_exit_code = subprocess.call(args)
|
|
|
|
if str(real_exit_code) != expected_exit_code:
|
|
print("Got exit code %d but expected %s" % (real_exit_code, expected_exit_code))
|
|
exit(1)
|