[Rcpp-commits] r4199 - scripts
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sun Jan 13 03:30:13 CET 2013
Author: edd
Date: 2013-01-13 03:30:13 +0100 (Sun, 13 Jan 2013)
New Revision: 4199
Modified:
scripts/runBuild.sh
Log:
minor mod of adding a second switch for no-op
Modified: scripts/runBuild.sh
===================================================================
--- scripts/runBuild.sh 2013-01-13 02:26:38 UTC (rev 4198)
+++ scripts/runBuild.sh 2013-01-13 02:30:13 UTC (rev 4199)
@@ -10,7 +10,7 @@
set -u
progname=`basename $0`
-options='nh?'
+options='lnh?'
usage_and_exit()
{
@@ -19,7 +19,7 @@
echo " Run build and tests for Rcpp package"
echo ""
echo "Options:"
- echo " -n no copy, only local build tests"
+ echo " -n,-l no copy, only local build tests"
echo " -h show this help"
echo ""
exit 0
@@ -33,6 +33,10 @@
copy=0
shift
;;
+ l)
+ copy=0
+ shift
+ ;;
h|?)
usage_and_exit
;;
More information about the Rcpp-commits
mailing list