|
|
@@ -114,7 +114,7 @@ public class ExecTask extends Task { |
|
|
|
*/ |
|
|
|
public void setTimeout(Long value) { |
|
|
|
timeout = value; |
|
|
|
incompatibleWithSpawn = true; |
|
|
|
incompatibleWithSpawn |= timeout != null; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@@ -363,7 +363,7 @@ public class ExecTask extends Task { |
|
|
|
*/ |
|
|
|
public void setFailIfExecutionFails(boolean flag) { |
|
|
|
failIfExecFails = flag; |
|
|
|
incompatibleWithSpawn = true; |
|
|
|
incompatibleWithSpawn |= flag; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@@ -376,7 +376,7 @@ public class ExecTask extends Task { |
|
|
|
*/ |
|
|
|
public void setAppend(boolean append) { |
|
|
|
redirector.setAppend(append); |
|
|
|
incompatibleWithSpawn = true; |
|
|
|
incompatibleWithSpawn |= append; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|