[ARVADOS-DEV] updated: 3253570c29f1af8bdc656a778472d5aa963f308d
git at public.curoverse.com
git at public.curoverse.com
Tue Feb 3 15:50:01 EST 2015
Summary of changes:
jenkins/run-build-packages.sh | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
via 3253570c29f1af8bdc656a778472d5aa963f308d (commit)
from 99ad69e4549ddd8b2fd94b4a609266b341005c1c (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 3253570c29f1af8bdc656a778472d5aa963f308d
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