Skip to content

Commit

Permalink
changes not reflecting in git since made one sample change in the line
Browse files Browse the repository at this point in the history
  • Loading branch information
SuparnaSuresh committed Nov 20, 2024
1 parent 90558f5 commit 13252a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/liberty/devCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ export async function startDevMode(libProject?: LibertyProject | undefined): Pro
terminal.show();
libProject.setTerminal(terminal);
if (libProject.getContextValue() === LIBERTY_MAVEN_PROJECT || libProject.getContextValue() === LIBERTY_MAVEN_PROJECT_CONTAINER) {
const cmd = await getCommandForMaven(libProject.getPath(), "io.openliberty.tools:liberty-maven-plugin:dev", libProject.getTerminalType());
terminal.sendText(cmd); // start dev mode on current project
// const cmd = await getCommandForMaven(libProject.getPath(), "io.openliberty.tools:liberty-maven-plugin:dev", libProject.getTerminalType());
// terminal.sendText(cmd); // start dev mode on current project
} else if (libProject.getContextValue() === LIBERTY_GRADLE_PROJECT || libProject.getContextValue() === LIBERTY_GRADLE_PROJECT_CONTAINER) {
const cmd = await getCommandForGradle(libProject.getPath(), "libertyDev", libProject.getTerminalType());
terminal.sendText(cmd); // start dev mode on current project
Expand Down

0 comments on commit 13252a3

Please sign in to comment.