2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-01-08 18:13:34 +08:00
artiq/artiq/test/not.py

8 lines
119 B
Python

import sys, subprocess
def main():
exit(not subprocess.call(sys.argv[1:]))
if __name__ == "__main__":
main()