diff options
Diffstat (limited to 'myacprep')
-rwxr-xr-x | myacprep | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,9 @@ -#!/bin/sh +#!/bin/bash # This is how I run acprep on my OS X Leopard machine. -./acprep --local --devel --debug --boost d-1_35 --python +if [[ "$1" = "--release" ]]; then + ./acprep --local --python "$@" +else + ./acprep --local --devel --debug --python "$@" +fi |