Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #22 from forderud/master
JENKINS-13844: "Emulate clean checkout by..." does not work with 1.7 subversion repositories
  • Loading branch information
ndeloof committed Oct 29, 2012
2 parents 3f18bad + 4be903c commit 8237758
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -65,7 +65,7 @@ protected void preUpdate(ModuleLocation module, File local) throws SVNException,

clientManager.getStatusClient().doStatus(local, null, SVNDepth.INFINITY, false, false, true, false, new ISVNStatusHandler() {
public void handleStatus(SVNStatus status) throws SVNException {
SVNStatusType s = status.getContentsStatus();
SVNStatusType s = status.getCombinedNodeAndContentsStatus();
if (s == SVNStatusType.STATUS_UNVERSIONED || s == SVNStatusType.STATUS_IGNORED || s == SVNStatusType.STATUS_MODIFIED) {
listener.getLogger().println("Deleting "+status.getFile());
try {
Expand Down

0 comments on commit 8237758

Please sign in to comment.