Changeset 59
- Timestamp:
- 09/03/08 10:47:53 (4 months ago)
- Files:
-
- yfast/trunk/build.xml (modified) (1 diff)
- yfast/trunk/src/com/euedge/yfast/tools/ant/YFast.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
yfast/trunk/build.xml
r58 r59 6 6 </description> 7 7 8 <property name="version" value="0.0. 3"/>8 <property name="version" value="0.0.4"/> 9 9 10 10 <target name="test" description="--> description"> yfast/trunk/src/com/euedge/yfast/tools/ant/YFast.java
r57 r59 166 166 try { 167 167 File f = new File(propertyFile); 168 if (f.getParentFile() != null && !f.getParentFile().mkdirs()) { 169 throw new BuildException("unable to create path for property file: " + propertyFile); 168 if (f.getParentFile() != null && !f.getParentFile().exists()) { 169 System.out.println("creating directory: " + f.getParentFile().getAbsolutePath()); 170 if (!f.getParentFile().mkdirs()) 171 throw new BuildException("unable to create path for property file: " 172 + propertyFile); 170 173 } 171 174 if (!f.exists())
