[ARVADOS] updated: 1.1.0-79-g0a3533a
Git user
git at public.curoverse.com
Tue Oct 17 15:05:52 EDT 2017
Summary of changes:
build/run-library.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 0a3533ab68220d9c5428d08ec189ca5db4f61f14 (commit)
from bef04e8124f22462a8ef2df585f435c090271b6e (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 0a3533ab68220d9c5428d08ec189ca5db4f61f14
Author: Fernando Monserrat <fernando.monserrat at gmail.com>
Date: Tue Oct 17 16:05:41 2017 -0300
12389: Fix last digit in version plus one
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 e809294..e1234ef 100755
--- a/build/run-library.sh
+++ b/build/run-library.sh
@@ -47,7 +47,7 @@ version_from_latest_tag() {
vnum1=${version_bits[0]}
vnum2=${version_bits[1]}
vnum3=${version_bits[2]}
- vnum3=int("$vnum3") + 1
+ vnum3=$((vnum3+1))
#vnum4=$(curl --silent https://ci.curoverse.com/job/new-versioning-build-packages-centos7/lastBuild/buildNumber)
#create new tag
new_version_tag="$vnum1.$vnum2.$vnum3"
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list