diff options
author | Sam James <sam@gentoo.org> | 2022-10-10 20:10:43 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-10-10 20:11:00 +0100 |
commit | 6ea1418415703933b8db1bd63e734e3a84497cdc (patch) | |
tree | 08a8cc1064b1513b801f888b342303200f32565f | |
parent | awk.eselect: support .xz (0.3) (diff) | |
download | eselect-awk-6ea1418415703933b8db1bd63e734e3a84497cdc.tar.gz eselect-awk-6ea1418415703933b8db1bd63e734e3a84497cdc.tar.bz2 eselect-awk-6ea1418415703933b8db1bd63e734e3a84497cdc.zip |
awk.eselect: support .zst
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | awk.eselect | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/awk.eselect b/awk.eselect index f1b578b..5192a23 100644 --- a/awk.eselect +++ b/awk.eselect @@ -1,5 +1,5 @@ # -*-eselect-*- vim: ft=eselect -# Copyright 2009-2020 Gentoo Authors +# Copyright 2009-2022 Gentoo Authors # Distributed under the terms of the GNU GPL version 2 or later DESCRIPTION="Manage {,/usr}/bin/awk implementations" @@ -52,8 +52,8 @@ set_symlinks() { die -q "Couldn't set ${target} ${i}/awk symlink" done - rm -f "${EROOT}"/usr/share/man/man1/awk.1{,.bz2,.gz,lzma,.xz,.lz} - for x in .1{,.gz,.bz2,.lzma,.xz,.lz}; do + rm -f "${EROOT}"/usr/share/man/man1/awk.1{,.bz2,.gz,lzma,.xz,.lz,.zst} + for x in .1{,.gz,.bz2,.lzma,.xz,.lz,.zst}; do if [[ -e ${EROOT}/usr/share/man/man1/${target}${x} ]] ; then extension="${x}" break |