From 103728ecde82b15cf115463d6f4f8e602f442073 Mon Sep 17 00:00:00 2001 From: jcamiel Date: Thu, 29 Aug 2024 16:56:30 +0200 Subject: [PATCH] Sync with master repo. --- sites/hurl.dev/_docs/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/hurl.dev/_docs/installation.md b/sites/hurl.dev/_docs/installation.md index 6a0aa25..7657d9c 100644 --- a/sites/hurl.dev/_docs/installation.md +++ b/sites/hurl.dev/_docs/installation.md @@ -15,7 +15,7 @@ Precompiled binary is available at [Hurl latest GitHub release]: ```shell $ INSTALL_DIR=/tmp -$ VERSION=4.3.0 +$ VERSION=5.0.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-x86_64-unknown-linux-gnu/bin:$PATH ``` @@ -25,7 +25,7 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release. ```shell -$ VERSION=4.3.0 +$ VERSION=5.0.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 ```