#!/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