blob: 6839bc2171355dfe2e3f2d576047619a47340b64 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# This is how I run acprep on my OS X Leopard machine.
if [[ "$1" = "--release" ]]; then
./acprep --local --python "$@"
else
./acprep --local --devel --debug --python "$@"
fi
|