in src/main/org/apache/ant/vss/MSVSS.java [574:587]
public String getWritableFiles() {
if (writableFiles == null) {
return "";
} else if (writableFiles.getValue().equals(WRITABLE_REPLACE)) {
return FLAG_REPLACE_WRITABLE;
} else if (writableFiles.getValue().equals(WRITABLE_SKIP)) {
// ss.exe exits with '100', when files have been skipped
// so we have to ignore the failure
failOnError = false;
return FLAG_SKIP_WRITABLE;
} else {
return "";
}
}