diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-24 17:43:25 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-24 17:43:25 -0400 |
commit | 153563d165044c6fe5cc36be2b9e0940fc51e563 (patch) | |
tree | 065683434cf1eb072f034f86052049c6c91520fb | |
parent | 29c4647eafa9f5f840fb113aa9141842232a6325 (diff) | |
download | fork-ledger-153563d165044c6fe5cc36be2b9e0940fc51e563.tar.gz fork-ledger-153563d165044c6fe5cc36be2b9e0940fc51e563.tar.bz2 fork-ledger-153563d165044c6fe5cc36be2b9e0940fc51e563.zip |
Don't drop arguments in tools/myacrpep
-rwxr-xr-x | tools/myacprep | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/myacprep b/tools/myacprep index 9198dee6..fab2e58b 100755 --- a/tools/myacprep +++ b/tools/myacprep @@ -30,6 +30,9 @@ while [ -n "$1" ]; do SWITCHES="$SWITCHES $1 --release" saw_opt=true shift 1 ;; + *) + SWITCHES="$SWITCHES $1" + shift 1 ;; esac done |