From 06b448053dea0e4988a23c646c2ba1131cab417f Mon Sep 17 00:00:00 2001 From: Joe Taber Date: Sat, 14 Oct 2023 12:43:17 -0500 Subject: [PATCH] Fix deb install script: use brackets to delineate var before underscores Without brackets, the shell reads `$VARIABLE_amd64` as a single variable name. --- docs/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index d601e4cf6..618ee7c1f 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -19,8 +19,8 @@ For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in ```shell $ VERSION=4.1.0 -$ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_$VERSION_amd64.deb -$ sudo apt update && sudo apt install ./hurl_$VERSION_amd64.deb +$ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_${VERSION}_amd64.deb +$ sudo apt update && sudo apt install ./hurl_${VERSION}_amd64.deb ``` #### Alpine