You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/05/18 19:35:03 UTC

incubator-ignite git commit: # ignite-456: fix workaround for validation

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-456 3070fc028 -> f304025a9


# ignite-456: fix workaround for validation


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/f304025a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/f304025a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/f304025a

Branch: refs/heads/ignite-456
Commit: f304025a9b71e271151bc59c1713236d8b2620a0
Parents: 3070fc0
Author: Artem Shutak <as...@gridgain.com>
Authored: Mon May 18 20:35:48 2015 +0300
Committer: Artem Shutak <as...@gridgain.com>
Committed: Mon May 18 20:35:48 2015 +0300

----------------------------------------------------------------------
 dev-tools/src/main/groovy/jiraslurp.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/f304025a/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 cc95282..b387a57 100644
--- a/dev-tools/src/main/groovy/jiraslurp.groovy
+++ b/dev-tools/src/main/groovy/jiraslurp.groovy
@@ -20,7 +20,7 @@
  */
 final GIT_REPO = "https://git1-us-west.apache.org/repos/asf/incubator-ignite.git"
 final ATTACHMENT_URL = "https://issues.apache.org/jira/secure/attachment"
-final validated_filename = "validated-jira.txt"
+final validated_filename = "${System.getProperty("user.home")}/validated-jira.txt"
 final LAST_SUCCESSFUL_ARTIFACT = "guestAuth/repository/download/Ignite_PatchValidation_PatchChecker/.lastSuccessful/$validated_filename"
 
 final def JIRA_CMD = System.getProperty('JIRA_COMMAND', 'jira.sh')
@@ -32,7 +32,7 @@ def readHistory = {
     List validated_list = []
 
     // TODO do not use folder.
-    def validated = new File(System.getProperty("user.home") + File.separator + validated_filename)
+    def validated = new File(validated_filename)
 
     if (validated.exists()) {
         // TODO use commented way.