[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2rc1-10-g61dfbb3
Service Account
noreply at mpich.org
Sat Oct 17 00:24:24 CDT 2015
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".
The branch, master has been updated
via 61dfbb3020a8cbf3792077a18dd197640147ce9c (commit)
from c9d0fb481b235dc6e2a5f3974e12f233b03384ed (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/61dfbb3020a8cbf3792077a18dd197640147ce9c
commit 61dfbb3020a8cbf3792077a18dd197640147ce9c
Author: Yanfei Guo <yguo at anl.gov>
Date: Sat Oct 17 00:22:46 2015 -0500
maint/jenkins: fix tarball build script
Recreate build directory if it does not exist.
No reviewer.
diff --git a/maint/jenkins/test-worker-tarball.sh b/maint/jenkins/test-worker-tarball.sh
index 13fa912..e80d85d 100755
--- a/maint/jenkins/test-worker-tarball.sh
+++ b/maint/jenkins/test-worker-tarball.sh
@@ -11,7 +11,9 @@ export FC=gfortran
cd $WORKSPACE
TMP_WORKSPACE=$(mktemp -d /sandbox/jenkins.tmp.XXXXXXXX)
-mkdir build
+if test ! -d $WORKSPACE/build ; then
+ mkdir -p $WORKSPACE/build
+fi
cp -a $WORKSPACE/* $TMP_WORKSPACE/
pushd $TMP_WORKSPACE
-----------------------------------------------------------------------
Summary of changes:
maint/jenkins/test-worker-tarball.sh | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list