[ARVADOS] updated: 1.1.4-2-g01b7da3
Git user
git at public.curoverse.com
Thu Apr 12 13:20:48 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 01b7da36d017bd061c6f104a02471faced68c28b (commit)
from c415c7ce2c5e95bebd7b8649ed5863a07b208dd3 (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 01b7da36d017bd061c6f104a02471faced68c28b
Author: Fernando Monserrat <fernando.monserrat at gmail.com>
Date: Thu Apr 12 14:20:40 2018 -0300
13339: fix typo assigning git_latest_tag
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 10be5e7..47c84a9 100644
--- a/sdk/cli/arvados-cli.gemspec
+++ b/sdk/cli/arvados-cli.gemspec
@@ -7,7 +7,7 @@ if not File.exist?('/usr/bin/git') then
exit
end
-git_latest_tag - `git describe --abbrev=0`
+git_latest_tag = `git describe --abbrev=0`
git_timestamp = `git log -n1 --first-parent --format=%ct`
git_timestamp = Time.at(git_timestamp.to_i).utc
diff --git a/sdk/ruby/arvados.gemspec b/sdk/ruby/arvados.gemspec
index 6b072ec..08ace0f 100644
--- a/sdk/ruby/arvados.gemspec
+++ b/sdk/ruby/arvados.gemspec
@@ -7,7 +7,7 @@ if not File.exist?('/usr/bin/git') then
exit
end
-git_latest_tag - `git describe --abbrev=0`
+git_latest_tag = `git describe --abbrev=0`
git_timestamp = `git log -n1 --first-parent --format=%ct`
git_timestamp = Time.at(git_timestamp.to_i).utc
diff --git a/services/login-sync/arvados-login-sync.gemspec b/services/login-sync/arvados-login-sync.gemspec
index 61d5dd8..6de9a94 100644
--- a/services/login-sync/arvados-login-sync.gemspec
+++ b/services/login-sync/arvados-login-sync.gemspec
@@ -7,7 +7,7 @@ if not File.exists?('/usr/bin/git') then
exit
end
-git_latest_tag - `git describe --abbrev=0`
+git_latest_tag = `git describe --abbrev=0`
git_timestamp = `git log -n1 --first-parent --format=%ct`
git_timestamp = Time.at(git_timestamp.to_i).utc
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list