commit | b36387ec3534c3fe4c407bbad7625ed6a8b5bad2 | [log] [tgz] |
---|---|---|
author | Filip Pytloun <filip@pytloun.cz> | Mon Mar 06 11:39:19 2017 +0100 |
committer | Filip Pytloun <filip@pytloun.cz> | Mon Mar 06 11:39:19 2017 +0100 |
tree | b2ae1161e61d19644f86f3cfcdd1afd63085b323 | |
parent | 3e4a1c94c65b2ea4617830883fff04b5296110f1 [diff] |
Fix forgotten agentSh call without class Change-Id: Ibb277e6b0a3fbd43c93574ffaaa13d612fe060e2
diff --git a/src/com/mirantis/mk/Git.groovy b/src/com/mirantis/mk/Git.groovy index eccc03e..78d236c 100644 --- a/src/com/mirantis/mk/Git.groovy +++ b/src/com/mirantis/mk/Git.groovy
@@ -171,7 +171,7 @@ if (pushSource == true) { followTagsArg = followTags && pushSourceTags ? "--follow-tags" : "" - agentSh "git push ${followTagsArg} origin HEAD:${branch}" + ssh.agentSh "git push ${followTagsArg} origin HEAD:${branch}" } }