1
0
Fork 0

Adding upstream version 1.3.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-24 05:49:30 +01:00
parent 3e596265aa
commit 8373449c0a
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
28 changed files with 75 additions and 83 deletions

View file

@ -1,6 +1,6 @@
#! /bin/sh
# check script for Zutils - Utilities dealing with compressed files
# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz.
# Copyright (C) 2009-2014 Antonio Diaz Diaz.
#
# This script is free software: you have unlimited permission
# to copy, distribute and modify it.
@ -22,8 +22,8 @@ extensions="bz2 gz lz"
compressor_needed() { echo "${compressors} are needed to run tests" ; exit 1 ; }
framework_failure() { echo "failure in testing framework" ; exit 1 ; }
if [ ! -f "${ZCAT}" ] || [ ! -x "${ZCAT}" ] ; then
echo "${ZCAT}: cannot execute"
if [ ! -f "${ZUPDATE}" ] || [ ! -x "${ZUPDATE}" ] ; then
echo "${ZUPDATE}: cannot execute"
exit 1
fi