Skip to content

Commit

Permalink
Tweak documentation change
Browse files Browse the repository at this point in the history
  • Loading branch information
olpaw committed Jan 22, 2024
1 parent ffceb29 commit a5b2ec7
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ For other installation options, visit the [Downloads section](https://www.graalv
native-image -jar App.jar
```
It will produce a native executable in the project root directory. The default name of the image will be the basename of the jarfile (`App` in our example).
This can be customized by either providing a custom image name as last argument or by using `-o imagename` before or after `-jar jarfile`.
It will produce a native executable in the project root directory.
The default name of the image will be the name of the JAR file (`App` in this case).
It can be customized by either providing a custom name as a last argument (for example, `native-image -jar App.jar imagename`), or by using `-o imagename` before or after `-jar jarfile`, for example: `native-image -jar App.jar -o imagename`.
6. Run the native executable:
```shell
Expand Down

0 comments on commit a5b2ec7

Please sign in to comment.