]> git.phdru.name Git - dotfiles.git/blob - bin/compyle
bash_prompt: Run `ls-files` from the root of the repo
[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 "$@"