stevel 02/04/11 00:18:44
Modified: src/main/org/apache/tools/ant/taskdefs ExecTask.java
Log:
no, this is the minor tidy up; javadoc tweak; that was a new task
Revision Changes Path
1.33 +5 -2
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/ExecTask.java
Index: ExecTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/ExecTask.java,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ExecTask.java 10 Apr 2002 10:27:52 -0000 1.32
+++ ExecTask.java 11 Apr 2002 07:18:44 -0000 1.33
@@ -220,7 +220,8 @@
}
/**
- * ant attribute
+ * fail if execution is wrong
+ * @since Ant 1.5
*/
public void setFailIfExecutionFails(boolean flag) {
failIfExecFails=flag;
@@ -274,7 +275,9 @@
log("Current OS is " + myos, Project.MSG_VERBOSE);
if ((os != null) && (os.indexOf(myos) < 0)){
// this command will be executed only on the specified OS
- log("This OS, " + myos + " was not found in the specified list
of valid OSes: " + os, Project.MSG_VERBOSE);
+ log("This OS, " + myos
+ + " was not found in the specified list of valid OSes: " +
os,
+ Project.MSG_VERBOSE);
return false;
}
return true;
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>