[ARVADOS] updated: 1.1.0-9-g103b97f
Git user
git at public.curoverse.com
Thu Oct 5 13:11:10 EDT 2017
Summary of changes:
build/run-library.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
via 103b97f5a02211b9c7d4000f0710e63ea0445a39 (commit)
from af6ab9434b3b258fae87e45ce24d9e572c5b07e7 (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 103b97f5a02211b9c7d4000f0710e63ea0445a39
Author: Fernando Monserrat <fernando.monserrat at gmail.com>
Date: Thu Oct 5 14:10:59 2017 -0300
12389: tests try fix buildNumber as third digit
Arvados-DCO-1.1-Signed-off-by: Fernando Monserrat <fmonserrat at veritasgenetics.com>
diff --git a/build/run-library.sh b/build/run-library.sh
index d55c692..a15a803 100755
--- a/build/run-library.sh
+++ b/build/run-library.sh
@@ -44,11 +44,11 @@ version_from_latest_tag() {
#replace . with space so can split into an array
version_bits=(${latest_tag//./ })
#get number parts and increase last one by 1
- vnum1=${version_bits[1]}
- vnum2=${version_bits[2]}
+ vnum1=${version_bits[0]}
+ vnum2=${version_bits[1]}
vnum3="$BUILD_NUMBER"
#create new tag
- echo "a ver el build num $BUILD_NUMBER"
+ echo "a ver el build num ${BUILD_NUMBER}"
new_version_tag="$vnum1.$vnum2.$vnum3"
git rev-parse HEAD >Changelog
echo "ver version: ${new_version_tag}"
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list