[ARVADOS] updated: 1.1.4-5-g5c4842c
Git user
git at public.curoverse.com
Thu Apr 12 14:38:03 EDT 2018
Summary of changes:
sdk/cli/arvados-cli.gemspec | 2 +-
sdk/ruby/arvados.gemspec | 2 +-
services/login-sync/arvados-login-sync.gemspec | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
via 5c4842c33069b4b908ecfe4b25185424d052a197 (commit)
from 2e950c2085596513edc9b2ccfe8134eee743516e (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 5c4842c33069b4b908ecfe4b25185424d052a197
Author: Fernando Monserrat <fernando.monserrat at gmail.com>
Date: Thu Apr 12 15:37:46 2018 -0300
13339: fix git_hash variable
Arvados-DCO-1.1-Signed-off-by: Fernando Monserrat <fmonserrat at veritasgenetics.com>
diff --git a/sdk/cli/arvados-cli.gemspec b/sdk/cli/arvados-cli.gemspec
index b73612f..fd48b48 100644
--- a/sdk/cli/arvados-cli.gemspec
+++ b/sdk/cli/arvados-cli.gemspec
@@ -9,7 +9,7 @@ end
git_latest_tag = `git describe --abbrev=0`
git_latest_tag = git_latest_tag.encode('utf-8').strip
-git_timestamp = `git log -n1 --first-parent --format=%ct`
+git_timestamp, git_hash = `git log -n1 --first-parent --format=%ct:%H .`.chomp.split(":")
git_timestamp = Time.at(git_timestamp.to_i).utc
Gem::Specification.new do |s|
diff --git a/sdk/ruby/arvados.gemspec b/sdk/ruby/arvados.gemspec
index cd9b5dd..e39c426 100644
--- a/sdk/ruby/arvados.gemspec
+++ b/sdk/ruby/arvados.gemspec
@@ -9,7 +9,7 @@ end
git_latest_tag = `git describe --abbrev=0`
git_latest_tag = git_latest_tag.encode('utf-8').strip
-git_timestamp = `git log -n1 --first-parent --format=%ct`
+git_timestamp, git_hash = `git log -n1 --first-parent --format=%ct:%H .`.chomp.split(":")
git_timestamp = Time.at(git_timestamp.to_i).utc
Gem::Specification.new do |s|
diff --git a/services/login-sync/arvados-login-sync.gemspec b/services/login-sync/arvados-login-sync.gemspec
index 3ff498e..4fb31a7 100644
--- a/services/login-sync/arvados-login-sync.gemspec
+++ b/services/login-sync/arvados-login-sync.gemspec
@@ -9,7 +9,7 @@ end
git_latest_tag = `git describe --abbrev=0`
git_latest_tag = git_latest_tag.encode('utf-8').strip
-git_timestamp = `git log -n1 --first-parent --format=%ct`
+git_timestamp, git_hash = `git log -n1 --first-parent --format=%ct:%H .`.chomp.split(":")
git_timestamp = Time.at(git_timestamp.to_i).utc
Gem::Specification.new do |s|
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list