Skip to content

Commit

Permalink
Merge pull request #166 from oleg-nenashev/bug/JENKINS-18578-2
Browse files Browse the repository at this point in the history
[JENKINS-18578] - Do not use the old cache when starting agents from CLI
  • Loading branch information
oleg-nenashev committed Jun 14, 2017
2 parents 5f7f79e + a547765 commit 2649c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/remoting/Launcher.java
Expand Up @@ -174,7 +174,7 @@ public void addClasspath(String pathList) throws Exception {
* @since 2.24
*/
@Option(name="-jar-cache",metaVar="DIR",usage="Cache directory that stores jar files sent from the master")
public File jarCache = new File(System.getProperty("user.home"),".jenkins/cache/jars");
public File jarCache = null;

/**
* Specified location of the property file with JUL settings.
Expand Down

0 comments on commit 2649c4c

Please sign in to comment.