Files
dicom2pacs/dist/dicom2pacs.app/Contents/Resources/__error__.sh
René Mathieu 0fef8d96c5 Initial commit
2026-01-17 13:49:51 +01:00

20 lines
374 B
Bash
Executable File

#!/bin/sh
#
# This is the default apptemplate error script
#
echo "Launch error"
if [ -n "$2" ]; then
echo "An unexpected error has occurred during execution of the main script"
echo ""
echo "$2: $3"
echo ""
fi
echo "See the py2app website for debugging launch issues"
echo ""
echo "ERRORURL: https://py2app.readthedocs.io/en/latest/debugging.html"
exit