Paul Allen commented on Bug JENKINS-26459

Perhaps I could just change the order in CheckoutTask to sync first then tidy.

e.g.

public Boolean invoke(File workspace, VirtualChannel channel)
			throws IOException {

		ClientHelper p4 = getConnection();
		try {
			// Check connection (might be on remote slave)
			if (!checkConnection(p4)) {
				return false;
			}

			// Sync workspace to label, head or specified change
			p4.syncFiles(buildChange, populate);

			// Tidy the workspace before sync/build
			p4.tidyWorkspace(populate);

			...
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to