Repository: incubator-ignite Updated Branches: refs/heads/ignite-456 352d9fa3c -> 27e7bb12a
# ignite-456: fix paramethers reading Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/27e7bb12 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/27e7bb12 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/27e7bb12 Branch: refs/heads/ignite-456 Commit: 27e7bb12a3c8470920bf68e9aa8c4eefeaf3c936 Parents: 352d9fa Author: null <null> Authored: Wed May 20 18:38:24 2015 +0300 Committer: null <null> Committed: Wed May 20 18:38:24 2015 +0300 ---------------------------------------------------------------------- dev-tools/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/27e7bb12/dev-tools/build.gradle ---------------------------------------------------------------------- diff --git a/dev-tools/build.gradle b/dev-tools/build.gradle index 02dfea6..10f9b64 100644 --- a/dev-tools/build.gradle +++ b/dev-tools/build.gradle @@ -36,7 +36,7 @@ task help { } task slurp(dependsOn: 'classes', type: JavaExec) { - args(project.buildDir, "slurp,${System.getenv('TEST_BUILDS')}") + args(project.buildDir) main = 'jiraslurp' classpath = sourceSets.main.runtimeClasspath } @@ -48,7 +48,7 @@ task patchapply(dependsOn: 'classes', type: JavaExec) { } task runAllBuilds(dependsOn: 'classes', type: JavaExec) { - args("runAllBuilds,${System.getenv('TEST_BUILDS')},${System.getenv('JIRA_NUM')}") + args("runAllBuilds,${System.getenv('JIRA_NUM')}") main = 'jiraslurp' classpath = sourceSets.main.runtimeClasspath }