export script rc != 0 should throw an error

Hi, I just wrote an export script that returns an appropriate exit code. 0 means everything's fine, everything else means something went wrong. However BSS always says that everything is fine. You can check it yourself with this script:

#!/bin/sh
echo "starting script..."
(>&2 echo "error, something went wrong")
exit 1

The expected behaviour is that BSS shows that an error occured in the toast, containing a link to "more information" or "show details". Behind that link one should see all STDERR (and maybe STDOUT, too).

Thank you for starting this thread! The app doesn't present error codes in the UI at moment. Errors are written in a log file. But we will fix this in the next release.

Great! Thank you, Martin.