mirror of
https://github.com/darlinghq/darling.git
synced 2024-12-01 00:00:35 +00:00
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)
|
|
|