[Rcpp-commits] r868 - scripts
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Wed Mar 10 02:39:48 CET 2010
Author: edd
Date: 2010-03-10 02:39:48 +0100 (Wed, 10 Mar 2010)
New Revision: 868
Modified:
scripts/runBuild.sh
scripts/runDoxygenAndZip.sh
Log:
set 'set -e' for these two as well
Modified: scripts/runBuild.sh
===================================================================
--- scripts/runBuild.sh 2010-03-10 01:39:18 UTC (rev 867)
+++ scripts/runBuild.sh 2010-03-10 01:39:48 UTC (rev 868)
@@ -1,5 +1,7 @@
#!/bin/sh
+set -e
+
if [ ! -d Rcpp ]; then
echo "Not above Rcpp/"
exit -1
Modified: scripts/runDoxygenAndZip.sh
===================================================================
--- scripts/runDoxygenAndZip.sh 2010-03-10 01:39:18 UTC (rev 867)
+++ scripts/runDoxygenAndZip.sh 2010-03-10 01:39:48 UTC (rev 868)
@@ -1,5 +1,7 @@
#!/bin/sh
+set -e
+
if [ ! -d Rcpp ]; then
echo "Not above Rcpp/"
exit -1
@@ -12,10 +14,10 @@
if [ -x /usr/bin/doxygen ]; then
- cd pkg/inst/doc
+ cd Rcpp/inst/doc
rm -rf html/ latex/ man/
cd ${cwd}
- cd pkg
+ cd Rcpp
cd src && ln -s ../inst/examples . && cd -
## see FAQ 17 for doxygen
More information about the Rcpp-commits
mailing list