From b25eb2d8e8281ad09d775ab0d54213088d66548b Mon Sep 17 00:00:00 2001 From: Andreas Textor Date: Tue, 25 Jan 2022 07:13:01 +0100 Subject: [PATCH] Fix installation instructions for executable jar --- docs/modules/ROOT/pages/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/index.adoc b/docs/modules/ROOT/pages/index.adoc index 75994428..a39ff70a 100644 --- a/docs/modules/ROOT/pages/index.adoc +++ b/docs/modules/ROOT/pages/index.adoc @@ -60,9 +60,9 @@ and add this directory to the PATH environment variable: If using the executable .jar file, the following commands will make the jar available as `owl` command as well. This works in MacOs and Linux. -[source,shell] +[source,shell,subs="attributes+,+quotes"] ---- -curl -L -o ~/.local/share/owl-cli/owl-cli.jar --create-dirs https://github.com/atextor/owl-cli/releases/download/{release-version}/owl-cli-{release-version}.jar +curl -L -o ~/.local/share/owl-cli/owl-cli.jar --create-dirs https://github.com/atextor/owl-cli/releases/download/{release-tag}/owl-cli-{release-version}.jar echo 'function owl() { java -jar ~/.local/share/owl-cli/owl-cli.jar $*; }' >> ~/.bashrc source ~/.bashrc ----