diff options
author | Robin Broda <robin@broda.me> | 2019-12-14 19:25:00 +0100 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2019-12-27 16:05:14 +0100 |
commit | 5eacb475cd1a92dc4fdaf25f86984da74a23f5ab (patch) | |
tree | 1f6805b189c9cb0ab6852dde059c4110d12b94be | |
parent | bcda211dd86b3bf54a9bc40d2e19f1aad4bbfbb8 (diff) | |
download | devtools32-5eacb475cd1a92dc4fdaf25f86984da74a23f5ab.tar.xz |
makerepopkg: fix zstd extension (.zstd -> .zst)
-rwxr-xr-x | makerepropkg.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makerepropkg.in b/makerepropkg.in index 710f3ca..40806cb 100755 --- a/makerepropkg.in +++ b/makerepropkg.in @@ -59,7 +59,7 @@ get_pkgfile() { local pkgname=${pkgfilebase%-*-*-*} local pkgfile ext - for ext in .xz .zstd ''; do + for ext in .xz .zst ''; do pkgfile=${pkgfilebase}.pkg.tar${ext} for c in "${cache_dirs[@]}"; do |