diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-08 04:39:17 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-08 04:39:17 +0000 |
commit | 35bd6e4a7ab54f8ff0a1c77653d6898af5dcf183 (patch) | |
tree | b3a897eeacf8b5d05a89972afd89e3cd2dc42974 /testsuite/check.sh | |
parent | Adding upstream version 1.3~rc1. (diff) | |
download | zutils-35bd6e4a7ab54f8ff0a1c77653d6898af5dcf183.tar.xz zutils-35bd6e4a7ab54f8ff0a1c77653d6898af5dcf183.zip |
Adding upstream version 1.3.upstream/1.3
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rwxr-xr-x | testsuite/check.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/check.sh b/testsuite/check.sh index 1cf52a2..c2d67f4 100755 --- a/testsuite/check.sh +++ b/testsuite/check.sh @@ -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 |