Skip to content

Commit c13d19a

Browse files
More file path improvements, mostly around pipeline jobs (#1203)
1 parent 64bdbe5 commit c13d19a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/bootstrap/src/org/labkey/bootstrap/LabKeyBootstrapClassLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public void validateReplaceArchive(File explodedModuleDirectory, File updatedArc
210210
@Override
211211
public Map.Entry<File,File> updateModule(File explodedModuleDirectory, File updateArchive, File existingArchive, File mvExistingArchive, boolean dryRun) throws IOException
212212
{
213-
File updateArchiveNewHome = new File(existingArchive.getParent(), updateArchive.getName());
213+
File updateArchiveNewHome = new File(existingArchive.getParentFile(), updateArchive.getName());
214214

215215
validateReplaceArchive(explodedModuleDirectory, updateArchive, existingArchive);
216216

0 commit comments

Comments
 (0)