This is an automated email from the ASF dual-hosted git repository. leonardcs pushed a commit to branch fix/cli-path in repository https://gitbox.apache.org/repos/asf/incubator-baremaps-site.git
commit 140a4b15d3b6dfa5944cf85626d2affc2284d303 Author: Leonard <[email protected]> AuthorDate: Thu Jul 20 13:53:08 2023 +0200 Fix cli path --- .../documentation/developer-manual/how-to-build-with-maven.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/documentation/developer-manual/how-to-build-with-maven.mdx b/src/pages/documentation/developer-manual/how-to-build-with-maven.mdx index 184e7e0..b90ffd1 100644 --- a/src/pages/documentation/developer-manual/how-to-build-with-maven.mdx +++ b/src/pages/documentation/developer-manual/how-to-build-with-maven.mdx @@ -10,9 +10,9 @@ To start you can run the command `./mvnw clean package -DskipTests` from the roo compilation you should see something similar to the following output in your terminal. ```bash -[INFO] Building tar: /path-to-project/baremaps-cli/target/apache-baremaps-0.7.2-SNAPSHOT-incubating-bin.tar.gz +[INFO] Building tar: /path-to-project/baremaps-cli/target/apache-baremaps-<version>-SNAPSHOT-incubating-bin.tar.gz [INFO] ------------------------------------------------------------------------ -[INFO] Reactor Summary for baremaps 0.7.2-SNAPSHOT: +[INFO] Reactor Summary for baremaps <version>-SNAPSHOT: [INFO] [INFO] baremaps ........................................... SUCCESS [ 4.172 s] [INFO] baremaps-core ...................................... SUCCESS [ 59.018 s] @@ -28,8 +28,8 @@ Referencing the location of the `baremaps-cli` binary file, you can run the foll and place Baremaps into your `PATH`. ```bash -tar -xvf ./baremaps-cli/target/apache-baremaps-0.7.2-SNAPSHOT-incubating-bin.tar.gz -export PATH=$PATH:`pwd`/apache-baremaps-0.7.2-SNAPSHOT-incubating-bin/bin +tar -xvf ./baremaps-cli/target/apache-baremaps-<version>-SNAPSHOT-incubating-bin.tar.gz -C target/ +export PATH=$PATH:`pwd`/target/apache-baremaps-<version>-SNAPSHOT-incubating-bin/bin ``` > **Note:** Make sure to replace the version number in the above commands with > the version number of the release you are using.
