From 8437891d1499a72204706bd5be36a2b568378ec1 Mon Sep 17 00:00:00 2001 From: christofluethi Date: Tue, 7 May 2024 13:10:16 +0200 Subject: [PATCH] add note about mingw path conversion --- content/en/docs/02.0/21_first-application.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/content/en/docs/02.0/21_first-application.md b/content/en/docs/02.0/21_first-application.md index 4b5f4063..f31a71bd 100644 --- a/content/en/docs/02.0/21_first-application.md +++ b/content/en/docs/02.0/21_first-application.md @@ -32,6 +32,17 @@ mvn io.quarkus:quarkus-maven-plugin:{{% param "quarkusVersion" %}}:create \ Which creates a generated getting-started application bootstrapped for you. The application holds at the moment a rest resource called `GreetingResource.java` which exposes a REST resource for you. + +{{% alert color="primary" %}} +Be aware that if you are creating your application using GitBash the shell actually transforms the Path `/hello` to something like `/C:/Program Files/Git/hello` (due to MinGWs Posix Path Conversion). + +you can fix this if you specify the path as following: +`-Dpath="hello"` (remove slash) + +Issue: +{{% /alert %}} + + To test the application you can start the application in dev-mode by executing ```bash