I'm having an issue with the ClearCase provider for SCM: when I try a checkout,
Maven first tries to remove my working directory, then errors out complaining
the directory it just removed no longer exists. I found this in the code for
the Checkout command:
// We have to execute from 1 level up from the working dir, since we
had to delete the working dir
command.setWorkingDirectory(new File(workingDirectory,
"..").getAbsolutePath());
Am I missing something? If the working directory was just deleted, clearly a
reference to it will no longer resolve???