Hardcode the gunzip src value as /users/build/main/release/AIX.tgz instead of using properties.
If that works, a property value likely has a tab at the end of its definition. That makes the process look for "file " instead of "file" and would explain why ANT doesn't see the file when it is really there. -----Original Message----- From: Faded-Maximus [mailto:[email protected]] Sent: Thursday, January 22, 2009 11:52 AM To: [email protected] Subject: Gunzip error I have been trying to figure this out for the last few hours to no avail. The code works fine on my one linux account and after editing a few variables and using it on the build account, I am receiving an error message. [install]$ ant build.ASE Buildfile: build.xml tidy.ASE: [echo] Cleaning the ASE folders... [echo] The ASE folders have been cleaned. unzip.ASE: [echo] Unzipping the ASE bundles... [echo] DEBUG (location of .tgz) /users/build/main/release/AIX.tgz BUILD FAILED /users/build/build.xml:305: the archive doesn't exist Total time: 0 seconds The code is as follows: <target name="unzip.ASE" description="Unzips Bundles."> <echo message="Unzipping the ASE bundles..." /> <echo message="DEBUG (location of .tgz): ${bundles.ASE}${compressedASE.AIX}" /> <gunzip src="${bundles.ASE}${compressedASE.AIX}" /> .... This is where it's failing, with that error message. The weird thing is the archive does physically exist in that location: [release]$ pwd /users/build/main/release [release]$ ls AIX.tgz Linux.tgz [release]$ Any ideas? -- View this message in context: http://www.nabble.com/Gunzip-error-tp21608282p21608282.html Sent from the Ant - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] _____________ The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the message in any manner; and (iii) notify the sender immediately. In addition, please be aware that any message addressed to our domain is subject to archiving and review by persons other than the intended recipient. Thank you. _____________ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
