Skip to content

Commit

Permalink
Fail when we don't find distribution.zip
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-jeckels committed Feb 19, 2024
1 parent ce8ba36 commit 2321ce3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ private void extractExecutableJar(File jarFilePath, File destDirectory, boolean
}
}

// if (!foundDistributionZip)
// {
// throw new ConfigException("Unable to find distribution zip required to run LabKey Server.");
// }
if (!foundDistributionZip)
{
throw new ConfigException("Unable to find distribution zip required to run LabKey Server.");
}
}
}
catch (IOException | ConfigException e)
Expand Down

0 comments on commit 2321ce3

Please sign in to comment.