diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-11-11 12:23:58 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-11-11 12:23:58 +0200 |
commit | d76c752a6d77052e5ad57ade555082585f7ac5d8 (patch) | |
tree | dbfee7586de09901d7bb779fe0fc47e58b049cfa /src/scripts/xzmore.in | |
parent | Translations: Rename poa4/fr_FR.po to po4a/fr.po. (diff) | |
download | xz-d76c752a6d77052e5ad57ade555082585f7ac5d8.tar.xz |
Scripts: Ignore warnings from xz.
In practice this means making the scripts work when
the input files have an unsupported check type which
isn't a problem in practice unless support for
some check types has been disabled at build time.
Diffstat (limited to '')
-rw-r--r-- | src/scripts/xzmore.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/xzmore.in b/src/scripts/xzmore.in index 6ba1344d..5188fdab 100644 --- a/src/scripts/xzmore.in +++ b/src/scripts/xzmore.in @@ -52,7 +52,7 @@ if test $# = 0; then if test -t 0; then printf '%s\n' "$usage"; exit 1 else - $xz -cdfq | eval "${PAGER:-more}" + $xz -cdfqQ | eval "${PAGER:-more}" fi else FIRST=1 @@ -70,7 +70,7 @@ else fi if test "$ANS" != 's'; then printf '%s\n' "------> $FILE <------" - $xz -cdfq -- "$FILE" | eval "${PAGER:-more}" + $xz -cdfqQ -- "$FILE" | eval "${PAGER:-more}" fi if test -t 1; then FIRST=0 |