pkg://aplus-fsf_4.18.8-11_alpha.deb:2888278/postinst
info downloads
#!/bin/sh
set -e
# Automatically added by dh_makeshlibs
if [ "$1" = "configure" ]; then
ldconfig
fi
# End automatically added section
# Run tests
set +e
/usr/bin/a+ /usr/lib/fsftest.+ 2>/dev/null | grep ERROR >/dev/null
if [ 0 -eq $? ]
then
echo "Error running A+ test script fsftest.+"
exit 1
fi
set -e
# Good test, but pops up a million little windows - annoying
# echo $DISPLAY
# if [ "$DISPLAY" != "" ]
# then
# /usr/bin/a+ /usr/lib/apter.+ >/dev/null 2>&1 </dev/null
# if [ 0 -ne $? ]
# then
# echo "Error running A+ test script apter.+"
# exit 1
# fi
# fi
exit 0