9 lines
197 B
Bash
Executable file
9 lines
197 B
Bash
Executable file
#!/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
|