159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
18 lines
718 B
Bash
Executable file
18 lines
718 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p common-updater-scripts curl
|
|
# shellcheck shell=bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
# The first valid version in the changelog should always be the latest version.
|
|
version="$(curl https://www.der-hammer.info/terminal/CHANGELOG.txt | grep -m1 -Po '[0-9]+\.[0-9]+\.[0-9]+')"
|
|
|
|
function update_hash_for_system() {
|
|
local system="$1"
|
|
# Reset the version number so the second architecture update doesn't get ignored.
|
|
update-source-version hterm 0 "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" --system="$system"
|
|
update-source-version hterm "$version" --system="$system"
|
|
}
|
|
|
|
update_hash_for_system x86_64-linux
|
|
update_hash_for_system i686-linux
|