inkscape/tests/scripts/test-basic.sh

16 lines
233 B
Bash
Executable File

#!/bin/bash
set +x
# This is normally set up by the Flatpak sandbox
LD_LIBRARY_PATH=/app/lib64:/app/lib
export LD_LIBRARY_PATH
/app/bin/inkscape --version
if [ $? != 0 ] ; then
echo FAILURE
exit 1
else
echo SUCCESS
fi