diff options
author | Erich Eckner <git@eckner.net> | 2020-01-03 13:26:28 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-01-03 13:26:28 +0100 |
commit | 9009a5fec52c5820fc90a68317bcc29cdbb42da1 (patch) | |
tree | 7b6282369dfa8cfc3cbd224b9dabf79ca4a5d87a /bin/modify-package-state | |
parent | 089cbcdf1c5cedcb4157cdd164ee7510139c1904 (diff) | |
download | builder-9009a5fec52c5820fc90a68317bcc29cdbb42da1.tar.xz |
learn to handle zst, too
Diffstat (limited to 'bin/modify-package-state')
-rwxr-xr-x | bin/modify-package-state | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/modify-package-state b/bin/modify-package-state index 0a394d7..eb1558b 100755 --- a/bin/modify-package-state +++ b/bin/modify-package-state @@ -23,7 +23,7 @@ usage() { >&2 echo 'Exactly one of -b|-f|-t|-u is needed for actual operation.' >&2 echo 'packages-file contains one line for each target.' >&2 echo 'for --faulty and --tested, the format is:' - >&2 echo ' sha512sum pkgname-epoch:pkgver-pkgrel.sub_pkgrel-arch[".pkg.tar.xz"]' + >&2 echo ' sha512sum pkgname-epoch:pkgver-pkgrel.sub_pkgrel-arch[".pkg.tar.zst"]' >&2 echo 'for --block and --unblock, the format is:' >&2 echo ' pkgbase.git_revision.mod_git_revision.repository.architecture' [ -z "$1" ] && exit 1 || exit "$1" @@ -149,7 +149,7 @@ while read -r a b; do case "${action}" in 'faulty'|'tested') # we expect a sha512sum and binary package identifier - # (pkgname-epoch:pkgver-pkgrel.sub_pkgrel-arch[".pkg.tar.xz"]) + # (pkgname-epoch:pkgver-pkgrel.sub_pkgrel-arch[".pkg.tar.zst"]) # and we will only operate on packages in "testing" repositories # shellcheck disable=SC2016 combiner=$( |