Fix deb install script: use brackets to delineate var before underscores

Without brackets, the shell reads `$VARIABLE_amd64` as a single variable name.
This commit is contained in:
Joe Taber 2023-10-14 12:43:17 -05:00 committed by GitHub
parent 897da088b8
commit 06b448053d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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