src/main/org/apache/ant/vss/MSVSSCLOAK.java [30:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Commandline buildCmdLine() {
        Commandline commandLine = new Commandline();

        // first off, make sure that we've got a command and a vssdir...
        if (getVsspath() == null) {
            String msg = "vsspath attribute must be set!";
            throw new BuildException(msg, getLocation());
        }
        // Cloak always returns 1 - must set failonerror="false" as workaround
        this.setFailOnError(false);
        // build the command line from what we got
        // the format is:
        // ss Cloak VSS project path
        // as specified in the SS.EXE help
        commandLine.setExecutable(getSSCommand());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/org/apache/ant/vss/MSVSSDECLOAK.java [30:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Commandline buildCmdLine() {
        Commandline commandLine = new Commandline();

        // first off, make sure that we've got a command and a vssdir...
        if (getVsspath() == null) {
            String msg = "vsspath attribute must be set!";
            throw new BuildException(msg, getLocation());
        }
        // Decloak always returns 1 - must set failonerror="false" as workaround
        this.setFailOnError(false);
        // build the command line from what we got
        // the format is:
        // ss Decloak VSS project path
        // as specified in the SS.EXE help
        commandLine.setExecutable(getSSCommand());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



