Repository: incubator-ignite Updated Branches: refs/heads/ignite-456 0be4ff302 -> 88d3ffd60
# ignite-456: fix Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/88d3ffd6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/88d3ffd6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/88d3ffd6 Branch: refs/heads/ignite-456 Commit: 88d3ffd6095c489fcf5d2f1a44bac58a6969e056 Parents: 0be4ff3 Author: Artem Shutak <ashu...@gridgain.com> Authored: Mon May 18 21:02:39 2015 +0300 Committer: Artem Shutak <ashu...@gridgain.com> Committed: Mon May 18 21:02:39 2015 +0300 ---------------------------------------------------------------------- dev-tools/src/main/groovy/jiraslurp.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/88d3ffd6/dev-tools/src/main/groovy/jiraslurp.groovy ---------------------------------------------------------------------- diff --git a/dev-tools/src/main/groovy/jiraslurp.groovy b/dev-tools/src/main/groovy/jiraslurp.groovy index 544bdb0..93be1b7 100644 --- a/dev-tools/src/main/groovy/jiraslurp.groovy +++ b/dev-tools/src/main/groovy/jiraslurp.groovy @@ -133,12 +133,12 @@ def applyPatch = { jira, attachementURL -> patchFile << new URL("$ATTACHMENT_URL/$attachementURL/").text try { - checkprocess "git config --global user.email \"$userEmail\"".execute(null, new File("../"))git - checkprocess "git config --global user.name \"$userName\"".execute(null, new File("../"))git +// checkprocess "git config --global user.email \"$userEmail\"".execute(null, new File("../")) +// checkprocess "git config --global user.name \"$userName\"".execute(null, new File("../")) // Create a new uniqueue branch to applying patch checkprocess "git checkout -b test-branch-${jira}-${attachementURL}-${System.currentTimeMillis()}". - execute(null, new File("../"))git + execute(null, new File("../")) checkprocess "git am dev-tools/${patchFile.name}".execute(null, new File("../"))