Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public void validateReplaceArchive(File explodedModuleDirectory, File updatedArc
@Override
public Map.Entry<File,File> updateModule(File explodedModuleDirectory, File updateArchive, File existingArchive, File mvExistingArchive, boolean dryRun) throws IOException
{
File updateArchiveNewHome = new File(existingArchive.getParent(), updateArchive.getName());
File updateArchiveNewHome = new File(existingArchive.getParentFile(), updateArchive.getName());

validateReplaceArchive(explodedModuleDirectory, updateArchive, existingArchive);

Expand Down