]> git.phdru.name Git - dotfiles.git/blob - bin/compyle
Feat(recode-filenames-recursive): Allow to omit parameters
[dotfiles.git] / bin / compyle
1 #! /bin/sh
2
3 if [ -z "$1" ]; then
4    echo "Usage: compyle file.py..." >&2
5    exit 1
6 fi
7
8      python$PY_VER    -m compileall "$@" &&
9 exec python$PY_VER -O -m compileall "$@"