Skip to content

Commit

Permalink
docts: update install.md (#883)
Browse files Browse the repository at this point in the history
Download the binary for the right OS/Arch combination.

Signed-off-by: Raul Gutierrez Segales <rgs@itevenworks.net>
  • Loading branch information
rgs1 committed Nov 9, 2023
1 parent a0cb00a commit 68e075c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/install.md
Expand Up @@ -6,8 +6,10 @@ On Linux and macOS you can download as follows:

```console
LATEST_VERSION=$(wget -O - "https://api.github.com/repos/open-policy-agent/conftest/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | cut -c 2-)
wget "https://github.com/open-policy-agent/conftest/releases/download/v${LATEST_VERSION}/conftest_${LATEST_VERSION}_Linux_x86_64.tar.gz"
tar xzf conftest_${LATEST_VERSION}_Linux_x86_64.tar.gz
ARCH=$(arch)
SYSTEM=$(uname)
wget "https://github.com/open-policy-agent/conftest/releases/download/v${LATEST_VERSION}/conftest_${LATEST_VERSION}_${SYSTEM}_${ARCH}.tar.gz"
tar xzf conftest_${LATEST_VERSION}_${SYSTEM}_${ARCH}.tar.gz
sudo mv conftest /usr/local/bin
```

Expand Down

0 comments on commit 68e075c

Please sign in to comment.