Skip to content

Commit

Permalink
Fix version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcamiel committed Apr 24, 2024
1 parent 6672e67 commit 9e84dcf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sites/hurl.dev/_docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Precompiled binary is available at [Hurl latest GitHub release]:

```shell
$ INSTALL_DIR=/tmp
$ VERSION=4.2.0
$ VERSION=4.3.0
$ curl --silent --location https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl-$VERSION-x86_64-unknown-linux-gnu.tar.gz | tar xvz -C $INSTALL_DIR
$ export PATH=$INSTALL_DIR/hurl-$VERSION:$PATH
```
Expand All @@ -25,7 +25,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION:$PATH
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.

```shell
$ VERSION=4.2.0
$ VERSION=4.3.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
```
Expand Down
2 changes: 1 addition & 1 deletion sites/hurl.dev/_docs/request.md
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ output: out.html # dump the response to this file
path-as-is: true # do not handle sequences of /../ or /./ in URL path
skip: false # skip this request
unix-socket: sock # use Unix socket for transfer
user: bob=secret # use basic authentication
user: bob:secret # use basic authentication
variable: country=Italy # define variable country
variable: planet=Earth # define variable planet
verbose: true # allow verbose output
Expand Down

0 comments on commit 9e84dcf

Please sign in to comment.