7fb77550bd
(doctest of itb_emoji.py is still commented out because it is too slow).
17 lines
213 B
Bash
Executable File
17 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
check_return_value () {
|
|
if [ $1 != 0 ] ; then
|
|
exit $1
|
|
fi
|
|
}
|
|
|
|
pushd /usr/share/ibus-typing-booster/engine
|
|
for i in $@; do
|
|
python3 ${i} -v
|
|
check_return_value $?
|
|
done
|
|
popd
|