Skip to content

Commit

Permalink
README: Mention 1.5.3
Browse files Browse the repository at this point in the history
Apologies – i forgot this the first time around.
  • Loading branch information
toothbrush authored Aug 22, 2022
1 parent 7594c8a commit 40f44f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ In this example, "shush exec":
# Include "shush" to decode KMS_ENCRYPTED_STUFF
ARG TARGETARCH
RUN curl -fsSL -o /usr/local/bin/shush \
https://github.com/realestate-com-au/shush/releases/download/v1.5.2/shush_linux_${TARGETARCH} \
https://github.com/realestate-com-au/shush/releases/download/v1.5.3/shush_linux_${TARGETARCH} \
&& chmod +x /usr/local/bin/shush
ENTRYPOINT ["/usr/local/bin/shush", "exec", "--"]

Expand All @@ -93,11 +93,11 @@ If you want to compile it from source, try:

$ go get github.com/realestate-com-au/shush

For Unix/Linux users, you can install `shush` using the following command. You may want to change the version number in the command below from `v1.5.2` to whichever version you want:
For Unix/Linux users, you can install `shush` using the following command. You may want to change the version number in the command below from `v1.5.3` to whichever version you want:

```
sudo curl -fsSL -o /usr/local/bin/shush \
"https://github.com/realestate-com-au/shush/releases/download/v1.5.2/shush_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_/amd/' | sed 's/aarch/arm/')" \
"https://github.com/realestate-com-au/shush/releases/download/v1.5.3/shush_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_/amd/' | sed 's/aarch/arm/')" \
&& sudo chmod +x /usr/local/bin/shush
```

Expand Down

0 comments on commit 40f44f0

Please sign in to comment.