Skip to content

Commit

Permalink
Merge pull request #36 from toothbrush/patch-1
Browse files Browse the repository at this point in the history
README: Mention 1.5.3
  • Loading branch information
Danial Pearce authored Aug 22, 2022
2 parents 7594c8a + 40f44f0 commit fee0cc1
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 fee0cc1

Please sign in to comment.