[ARVADOS-DEV] updated: 501a707f36ac0b2ac13dc074020641b58128e175

git at public.curoverse.com git at public.curoverse.com
Tue Feb 3 15:50:51 EST 2015


Summary of changes:
 jenkins/run-build-packages.sh | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

       via  501a707f36ac0b2ac13dc074020641b58128e175 (commit)
      from  4af2bd565b75a9dcbb553975599d5e0b8856e940 (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.


commit 501a707f36ac0b2ac13dc074020641b58128e175
Author: Ward Vandewege <ward at curoverse.com>
Date:   Tue Feb 3 15:49:49 2015 -0500

    * Only source /etc/profile.d/rvm.sh if it exists and is a regular file
    * Fix typo
    
    No issue #

diff --git a/jenkins/run-build-packages.sh b/jenkins/run-build-packages.sh
index 7ec33e6..1dae4bc 100755
--- a/jenkins/run-build-packages.sh
+++ b/jenkins/run-build-packages.sh
@@ -208,7 +208,9 @@ build_and_scp_deb () {
   fi
 }
 
-source /etc/profile.d/rvm.sh
+if [[ -f /etc/profile.d/rvm.sh ]]; then
+  source /etc/profile.d/rvm.sh
+fi
 
 # Make all files world-readable -- jenkins runs with umask 027, and has checked
 # out our git tree here
@@ -409,7 +411,7 @@ build_and_scp_deb $GOPATH/bin/crunchstat=/usr/bin/crunchstat crunchstat 'Curover
 # prefix from only one of the dependencies of a package...  Maybe I could
 # whip up a patch and send it upstream, but that will be for another day. Ward,
 # 2014-05-15
-cd $WORKSPACE/debs2
+cd $WORKSPACE/debs
 # Python version numbering is obscure. Strip dashes and replace them with dots
 # to match our other version numbers. Cf. commit 4afcb8c, compliance with PEP-440.
 build_and_scp_deb $WORKSPACE/sdk/python python-arvados-python-client 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){ gsub(/-/,".",$2); print $2 }' $WORKSPACE/sdk/python/arvados_python_client.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Arvados Python SDK"

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list