ibus-libzhuyin/tests/make_check.sh
2023-07-18 12:02:34 +02:00

16 lines
170 B
Bash

#!/bin/bash
set -x
check_return_value () {
if [ $1 != 0 ] ; then
exit $1
fi
}
cd $1
./configure --prefix=/usr
check_return_value $?
make check
exit $?