-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix command for native compile in gradle-plugin-quickstart.adoc #633
base: master
Are you sure you want to change the base?
Conversation
@@ -213,7 +213,7 @@ graalvmNative { | |||
+ | |||
[source,shell] | |||
---- | |||
./gradlew nativeRun | |||
./gradlew nativeCompile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The nativeCompile
task indeed matches the step description "Compile the project and build a native executable at one step", while nativeRun
compiles, builds, and runs the native executable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We actually plan refactoring of quick start guides to improve the user experience (already in progress). This correction would have been considered too.
This PR fixes command for native compile in the
gradle-plugin-quickstart.adoc
.