mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 22:30:38 -04:00
12 lines
187 B
Python
12 lines
187 B
Python
#!%%PYTHON_CMD%%
|
|
import sys
|
|
import compileall
|
|
|
|
import sys
|
|
|
|
try:
|
|
sys.argv[1]
|
|
except IndexError:
|
|
print "Path missing"
|
|
else:
|
|
compileall.compile_dir(sys.argv[1], force=True)
|