Skip to content

Commit

Permalink
Improve upgrade workflow for embedded Tomcat (#1845)
Browse files Browse the repository at this point in the history
Removing the `embedded/server` directory from embedded deployments
  • Loading branch information
labkey-tchad authored Mar 12, 2024
1 parent 10f82d9 commit 26f5bd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/labkey/test/TestFileUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public static File getModulesDir()
if (TestProperties.isEmbeddedTomcat() && !_modulesDir.isDirectory())
{
// Module root when deploying from embedded distribution
_modulesDir = new File(getDefaultDeployDir(), "embedded/server/modules");
_modulesDir = new File(getDefaultDeployDir(), "embedded/modules");
}
}
return _modulesDir;
Expand Down

0 comments on commit 26f5bd7

Please sign in to comment.