summaryrefslogtreecommitdiff
path: root/myacprep
diff options
context:
space:
mode:
Diffstat (limited to 'myacprep')
-rwxr-xr-xmyacprep8
1 files changed, 6 insertions, 2 deletions
diff --git a/myacprep b/myacprep
index 77d66faa..6839bc21 100755
--- a/myacprep
+++ b/myacprep
@@ -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