Changeset 20041
- Timestamp:
- 2009-07-21T09:15:43+12:00 (14 years ago)
- Location:
- other-projects/trunk/anttasks
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
other-projects/trunk/anttasks/build.xml
r20038 r20041 128 128 <!-- test 1 --> 129 129 <copy file="src/test/sevenzip.lzma" tofile="test/sevenzip1.lzma"/> 130 < dcfftask="decode" input="test/sevenzip1.lzma" output="test/sevenzip1.comp"/>130 <sevenzip task="decode" input="test/sevenzip1.lzma" output="test/sevenzip1.comp"/> 131 131 132 132 </target> -
other-projects/trunk/anttasks/src/org/greenstone/anttasks/WindowsSevenZipWrapper.java
r20038 r20041 42 42 43 43 //check both attributes set 44 if ( task != null && task != "decode") {44 if ( task != null && !task.equals("decode") ) { 45 45 throw new BuildException( "Error - Only task supported is 'decode' !!" ); 46 46 }
Note:
See TracChangeset
for help on using the changeset viewer.