Skip to content

Commit

Permalink
Update KeployCLI.java to add language flag (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
gouravkrosx authored Sep 5, 2023
1 parent 10656e5 commit a5cdb51
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions v2/src/main/java/io.keploy.cli/KeployCLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ public static void RunKeployServer(long pid, int delay, String testPath, int por
"--pid=" + pid,
"-p=" + testPath,
"-d=" + delay,
"--port=" + port
"--port=" + port,
"--language=java"
};


Expand Down Expand Up @@ -324,4 +325,4 @@ private static void forceKillProcessByPID(String pid) {
}
}

}
}

0 comments on commit a5cdb51

Please sign in to comment.