Skip to content

Commit

Permalink
Fix deb install script: use brackets to delineate var before underscores
Browse files Browse the repository at this point in the history
Without brackets, the shell reads `$VARIABLE_amd64` as a single variable name.
  • Loading branch information
infogulch authored Oct 14, 2023
1 parent 897da08 commit 06b4480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 06b4480

Please sign in to comment.