11 lines
127 B
Bash
Executable File
11 lines
127 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if ! [[ -x wzip ]]; then
|
|
echo "wzip executable does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
../../tester/run-tests.sh $*
|
|
|
|
|