Skip to content

Commit

Permalink
Fix win path on test temp dir
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiNino committed Sep 19, 2019
1 parent b244e19 commit e079cdf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private static void createPipelineSubstitution() {
put("GRADLE_CI_PROJECT_PATH", getProjectPath("gradle-example-ci"));
put("NPM_PROJECT_PATH", getProjectPath("npm-example"));
put("DOCKER_PROJECT_PATH", getProjectPath("docker-example"));
put("TEST_TEMP_FOLDER", testTemporaryFolder.getRoot().getAbsolutePath());
put("TEST_TEMP_FOLDER", fixWindowsPath(testTemporaryFolder.getRoot().getAbsolutePath()));
put("LOCAL_REPO1", getRepoKey(TestRepository.LOCAL_REPO1));
put("LOCAL_REPO2", getRepoKey(TestRepository.LOCAL_REPO2));
put("JCENTER_REMOTE_REPO", getRepoKey(TestRepository.JCENTER_REMOTE_REPO));
Expand Down

0 comments on commit e079cdf

Please sign in to comment.