ok, once again ... here is my patch:
problem:
the localpath parameter doesn't work
-GL path => must be -GLpath !!!!
martin
Index: ./src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSGET.java
===================================================================
RCS file:
/home/cvspublic/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/vss/
MSVSSGET.java,v
retrieving revision 1.6
diff -u -r1.6 MSVSSGET.java
--- ./src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSGET.java
2001/01/03 14:18:46 1.6
+++ ./src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSGET.java
2001/01/25 10:37:40
@@ -200,8 +200,7 @@
project.log("Created dir: " + dir.getAbsolutePath());
}
- cmd.createArgument().setValue(FLAG_OVERRIDE_WORKING_DIR);
- cmd.createArgument().setValue(m_LocalPath);
+ cmd.createArgument().setValue(FLAG_OVERRIDE_WORKING_DIR +
m_LocalPath);
}
}
@@ -314,7 +313,7 @@
m_AutoResponse = response;
}
}
-
+
/**
* Checks the value set for the autoResponse.
* if it equals "Y" then we return -I-Y
@@ -322,12 +321,12 @@
* otherwise we return -I
*/
public void getAutoresponse(Commandline cmd) {
-
+
if ( m_AutoResponse == null) {
cmd.createArgument().setValue(FLAG_AUTORESPONSE_DEF);
} else if ( m_AutoResponse.equalsIgnoreCase("Y")) {
cmd.createArgument().setValue(FLAG_AUTORESPONSE_YES);
-
+
} else if ( m_AutoResponse.equalsIgnoreCase("N")) {
cmd.createArgument().setValue(FLAG_AUTORESPONSE_NO);
}else {
The command completed successfully.