]> git.phdru.name Git - dotfiles.git/blobdiff - bin/compyle
Use compileall.py
[dotfiles.git] / bin / compyle
index 260788add0857902ab4a14b1a546f9553bcec4f7..4050467e9f4ece9e13bc0aec2eb5eba1e23250d0 100755 (executable)
@@ -1,17 +1,9 @@
 #! /bin/sh
 
 if [ -z "$1" ]; then
-   echo "Usage: compyle [-1] file.py..."
+   echo "Usage: compyle file.py..." >&2
    exit 1
 fi
 
-TEMPLATE="from py_compile import compile; compile('"
-
-for file in "$@"; do
-   pgm=$TEMPLATE$file"')"
-   python"$PY_VER" -c   "$pgm" || exit 1
-   python"$PY_VER" -OOc "$pgm" || exit 1
-done
-
-#pgm="$HOME/lib/python/com.py"
-#python"$PY_VER" $pgm "$@" && python"$PY_VER" -O $pgm "$@"
+     python$PY_VER    -m compileall "$@" &&
+exec python$PY_VER -O -m compileall "$@"