File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,13 @@ image:
19
19
We want to get the latest release of ` SOPS ` so we need to look at their github repo for the latest version.
20
20
21
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.]+' )
22
+ SOPS_LATEST_VERSION=$( curl -s " https://api.github.com/repos/getsops /sops/releases/latest" | grep -Po ' "tag_name": "v\K[0-9.]+' )
23
23
```
24
24
25
25
Then we'll use ` curl ` to download the latest ` .deb `
26
26
27
27
``` 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"
29
29
30
30
```
31
31
You can’t perform that action at this time.
0 commit comments