430df3ca3c
Since ZFS v15, the following functionality of the "zfs" command requires this port installed: zfs allow zfs unallow zfs userspace zfs groupspace
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)
|