Author: psrna
Date: 2012-10-02 10:11:52 -0400 (Tue, 02 Oct 2012)
New Revision: 44216
Modified:
trunk/tests/scripts/installation-updates/src/main/groovy/getAndInstallEclipse.groovy
Log:
* fixed unzip new File(".")
Modified:
trunk/tests/scripts/installation-updates/src/main/groovy/getAndInstallEclipse.groovy
===================================================================
---
trunk/tests/scripts/installation-updates/src/main/groovy/getAndInstallEclipse.groovy 2012-10-02
13:47:56 UTC (rev 44215)
+++
trunk/tests/scripts/installation-updates/src/main/groovy/getAndInstallEclipse.groovy 2012-10-02
14:11:52 UTC (rev 44216)
@@ -45,7 +45,7 @@
if (fileExtension.equals("zip")) {
new AntBuilder().unzip(
src: cachedFile.getAbsolutePath(),
- dest: new File().getAbsolutePath());
+ dest: new File(".").getAbsolutePath());
} else if (fileExtension.equals("tar.gz")) {
File tarFile = new File(eclipseCacheDirectory, cachedFile.getName()[0..-
(".gz".length() + 1)]);
if (!tarFile.isFile()) {
Show replies by date