Create a new channel as a copy of main.
Rename main to:
Delete main? This cannot be undone.
#!/usr/bin/env python3 """Runs a built binary.""" import subprocess import sys # Prefix with ./ to run built binary, not arbitrary stuff from PATH. sys.exit(subprocess.call(['./' + sys.argv[1]] + sys.argv[2:]))