Skip to content

Commit

Permalink
[JENKINS-16215] : changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kutzi committed Jan 20, 2013
1 parent 586af3c commit 19b3168
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -74,6 +74,9 @@
<li class=bug>
Accept any plugin with a 'test' goal as a test plugin in Maven jobs
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-8334">issue 8334</a>)
<li class=rfe>
Avoid unnecessary downloads if automatically installed tools are up-to-date
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16215">issue 16215</a>)
</ul>
</div><!--=TRUNK-END=-->

Expand Down
4 changes: 2 additions & 2 deletions core/src/main/java/hudson/FilePath.java
Expand Up @@ -727,8 +727,8 @@ public boolean installIfNecessaryFrom(URL archive, TaskListener listener, String
try {
if(archive.toExternalForm().endsWith(".zip"))
unzipFrom(cis);
else
untarFrom(cis,GZIP);
else
untarFrom(cis,GZIP);
} catch (IOException e) {
throw new IOException2(String.format("Failed to unpack %s (%d bytes read of total %d)",
archive,cis.getByteCount(),con.getContentLength()),e);
Expand Down

0 comments on commit 19b3168

Please sign in to comment.