You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qubes-installer-qubes-os/anaconda/tests/accelerators/run_check_accelerators.sh

23 lines
569 B

#!/bin/sh
: "${top_srcdir:=$(dirname "$0")/../..}"
srcdir="${top_srcdir}/tests/accelerators"
# If --translate was specified but not --podir, add --podir
i=0
translate_set=0
podir_set=0
for arg in "$@" ; do
if [ "$arg" = "--translate" -o "$arg" = "-t" ]; then
translate_set=1
elif [ "$arg" = "--podir" -o "$arg" = "-p" ]; then
podir_set=1
fi
done
if [ "$translate_set" -eq 1 -a "$podir_set" -eq 0 ]; then
set -- "$@" --podir "${top_srcdir}/po"
fi
find "${top_srcdir}" -name '*.glade' -exec "${srcdir}/check_accelerators.py" "$@" {} +