410b979fe2
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
8 lines
268 B
Bash
Executable file
8 lines
268 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl jq common-updater-scripts
|
|
|
|
set -eu -o pipefail
|
|
|
|
version="$(curl --silent "https://api.github.com/repos/cockpit-project/cockpit/releases" | jq '.[0].tag_name' --raw-output)"
|
|
|
|
update-source-version cockpit "$version"
|