debian-forge/runners/org.osbuild.linux
2022-09-12 13:32:51 +02:00

8 lines
154 B
Python
Executable file

#!/usr/bin/python3
import subprocess
import sys
if __name__ == "__main__":
r = subprocess.run(sys.argv[1:], check=False)
sys.exit(r.returncode)