Skip to content

Commit

Permalink
changes based on review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Arun Venmany <[email protected]>
  • Loading branch information
arunvenmany-ibm committed Feb 13, 2025
1 parent 8538e24 commit 83a9781
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,6 @@ class DevTask extends AbstractFeatureTask {
File configDirectory = server.configDirectory;
// getOutputDir returns a string
File serverOutputDir = new File(getOutputDir(project));
File serverOutputDirectory= new File(serverOutputDir, serverName)

if (!container) {
if (serverDirectory.exists()) {
Expand Down Expand Up @@ -1293,7 +1292,7 @@ class DevTask extends AbstractFeatureTask {
verifyAppStartTimeout.intValue(), verifyAppStartTimeout.intValue(), compileWait.doubleValue(),
libertyDebug.booleanValue(), pollingTest.booleanValue(), container.booleanValue(), containerfile, containerBuildContext, containerRunOpts,
containerBuildTimeout, skipDefaultPorts.booleanValue(), keepTempContainerfile.booleanValue(), localMavenRepoForFeatureUtility,
DevTaskHelper.getPackagingType(project), buildFile, generateFeatures.booleanValue(), webResourceDirs, projectModules, parentBuildGradle, serverOutputDirectory
DevTaskHelper.getPackagingType(project), buildFile, generateFeatures.booleanValue(), webResourceDirs, projectModules, parentBuildGradle, new File(serverOutputDir, serverName)
);
} catch (IOException | PluginExecutionException e) {
throw new GradleException("Error initializing dev mode.", e)
Expand Down

0 comments on commit 83a9781

Please sign in to comment.