X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=blobdiff_plain;f=bin%2Fcompyle;h=4050467e9f4ece9e13bc0aec2eb5eba1e23250d0;hp=260788add0857902ab4a14b1a546f9553bcec4f7;hb=251fbf7a8041156345cd9bdc4ddb382b7fd93b9f;hpb=c6b83daa40235e5781af235c106fb8a94c1135aa 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 "$@"