moveTempFileToDeployLocation(tempFile, appFile, isExploded);
// The file has been written successfully to the deploy dir. Now try to actually deploy it.
MainDeployer mainDeployer = getParentResourceComponent().getMainDeployer();
try {
mainDeployer.redeploy(appFile);
// Deploy was successful, delete the backup
try {
FileUtils.purge(backupOfOriginalFile, true);
} catch (Exception e) {