mirror of
https://github.com/darlinghq/darling.git
synced 2024-11-24 12:49:44 +00:00
5f96f6c7fb
This makes it easy to add the folder to PATH and run commands
8 lines
120 B
Python
Executable File
8 lines
120 B
Python
Executable File
#!/usr/bin/env python2
|
|
|
|
import py_compile
|
|
import sys
|
|
|
|
py_compile.compile(sys.argv[1], cfile=sys.argv[2], doraise=True)
|
|
|