parameters.setString( CommandParameter.MESSAGE, message == null ? "" : message );
parameters.setString( CommandParameter.BINARY, "false" );
// just invoke add command
Command cmd = getAddCommand();
cmd.setLogger( getLogger() );
ScmResult addResult = cmd.execute( repository, fileSet, parameters );
if ( !addResult.isSuccess() )
{
return new MkdirScmResult( addResult.getCommandLine().toString(), "The cvs command failed.",
addResult.getCommandOutput(), false );