X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=bin%2Fcompyle;h=4050467e9f4ece9e13bc0aec2eb5eba1e23250d0;hb=7815b8b7ca790bb55b7e5306da2fc45528e1d8c8;hp=260788add0857902ab4a14b1a546f9553bcec4f7;hpb=f46bd4d41cc7f243bc8a321effee5200aa69e709;p=dotfiles.git diff --git a/bin/compyle b/bin/compyle index 260788a..4050467 100755 --- a/bin/compyle +++ b/bin/compyle @@ -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 "$@"