Skip to content

Commit

Permalink
Update cli/ballerina-cli/src/main/java/io/ballerina/cli/cmd/BuildComm…
Browse files Browse the repository at this point in the history
…and.java
  • Loading branch information
gimantha authored Oct 23, 2024
1 parent 823e330 commit 97657ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public void execute() {
String jarFileName = packageName+".jar";
Path jarFilePath = targetDirPath.resolve("bin").resolve(jarFileName);
outStream.println("What's next?");
outStream.println("Execute java -jar " + jarFilePath.toString + " to run the program");
outStream.println("Execute java -jar " + jarFilePath.toString() + " to run the program");

if (this.exitWhenFinish) {
Runtime.getRuntime().exit(0);
Expand Down

0 comments on commit 97657ff

Please sign in to comment.