Add missing -r to go toolchain version check

Signed-off-by: Itxaka <itxaka@kairos.io>
This commit is contained in:
Itxaka
2023-12-28 13:11:30 +01:00
parent f2ecb283c2
commit 26f573240a

View File

@@ -11,9 +11,9 @@ packages:
autobump.string_replace: '{ "prefix": "" }' autobump.string_replace: '{ "prefix": "" }'
autobump.prefix: "prefix" autobump.prefix: "prefix"
autobump.hook: | autobump.hook: |
curl -s -L "https://go.dev/dl/?mode=json" |jq '.[0].version'| sed 's/go//g' curl -s -L "https://go.dev/dl/?mode=json" |jq -r '.[0].version'| sed 's/go//g'
autobump.version_hook: | autobump.version_hook: |
curl -s -L "https://go.dev/dl/?mode=json" |jq '.[0].version'| sed 's/go//g' curl -s -L "https://go.dev/dl/?mode=json" |jq -r '.[0].version'| sed 's/go//g'
- name: toolchain-go-ubuntu - name: toolchain-go-ubuntu
variant: "" variant: ""
category: development category: development