mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Follow-up on previous merge to fix compilation
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@39837 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -392,16 +392,17 @@ public class ModuleManagementTool implements LogOutput
|
||||
mappingTarget = mappingTarget.trim(); //trim whitespace
|
||||
|
||||
// Run throught the files one by one figuring out what we are going to do during the copy
|
||||
calculateCopyToWar(ampFileLocation, warFileLocation, mappingSource, mappingTarget, installedFiles, preview, forceInstall);
|
||||
calculateCopyToWar(ampFileLocation, warFileLocation, mappingSource, mappingTarget, installedFiles, preview, forceInstall);
|
||||
|
||||
// Get a reference to the source folder (if it isn't present don't do anything)
|
||||
TFile source = new TFile(ampFileLocation + "/" + mappingSource);
|
||||
if (source != null && source.list() != null)
|
||||
{
|
||||
// Add to the list of directory changes so we can implement the changes later.
|
||||
String sourceDir = ampFileLocation + mappingSource;
|
||||
String destinationDir = warFileLocation + mappingTarget;
|
||||
dirChanges.put(sourceDir, destinationDir);
|
||||
// Get a reference to the source folder (if it isn't present don't do anything)
|
||||
TFile source = new TFile(ampFileLocation + "/" + mappingSource);
|
||||
if (source != null && source.list() != null)
|
||||
{
|
||||
// Add to the list of directory changes so we can implement the changes later.
|
||||
String sourceDir = ampFileLocation + mappingSource;
|
||||
String destinationDir = warFileLocation + mappingTarget;
|
||||
dirChanges.put(sourceDir, destinationDir);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user