Skip to content

Commit abe4adb

Browse files
fix(post): Fixed SOPS location
1 parent db6f507 commit abe4adb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/2023-01-30-install-mozilla-sops.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ image:
1919
We want to get the latest release of `SOPS` so we need to look at their github repo for the latest version.
2020

2121
```bash
22-
SOPS_LATEST_VERSION=$(curl -s "https://api.github.com/repos/mozilla/sops/releases/latest" | grep -Po '"tag_name": "v\K[0-9.]+')
22+
SOPS_LATEST_VERSION=$(curl -s "https://api.github.com/repos/getsops/sops/releases/latest" | grep -Po '"tag_name": "v\K[0-9.]+')
2323
```
2424

2525
Then we'll use `curl` to download the latest `.deb`
2626

2727
```bash
28-
curl -Lo sops.deb "https://github.com/mozilla/sops/releases/latest/download/sops_${SOPS_LATEST_VERSION}_amd64.deb"
28+
curl -Lo sops.deb "https://github.com/getsops/sops/releases/download/v${SOPS_LATEST_VERSION}/sops_${SOPS_LATEST_VERSION}_amd64.deb"
2929

3030
```
3131

0 commit comments

Comments
 (0)