We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db6f507 commit abe4adbCopy full SHA for abe4adb
_posts/2023-01-30-install-mozilla-sops.md
@@ -19,13 +19,13 @@ image:
19
We want to get the latest release of `SOPS` so we need to look at their github repo for the latest version.
20
21
```bash
22
-SOPS_LATEST_VERSION=$(curl -s "https://api.github.com/repos/mozilla/sops/releases/latest" | grep -Po '"tag_name": "v\K[0-9.]+')
+SOPS_LATEST_VERSION=$(curl -s "https://api.github.com/repos/getsops/sops/releases/latest" | grep -Po '"tag_name": "v\K[0-9.]+')
23
```
24
25
Then we'll use `curl` to download the latest `.deb`
26
27
28
-curl -Lo sops.deb "https://github.com/mozilla/sops/releases/latest/download/sops_${SOPS_LATEST_VERSION}_amd64.deb"
+curl -Lo sops.deb "https://github.com/getsops/sops/releases/download/v${SOPS_LATEST_VERSION}/sops_${SOPS_LATEST_VERSION}_amd64.deb"
29
30
31
0 commit comments