LogarithmPlotter/linux/snapcraft/launcher/launch-logarithmplotter

15 lines
478 B
Plaintext
Raw Normal View History

2021-07-31 22:49:44 +00:00
#!/usr/bin/env bash
# This is the maintainence launcher for the snap, make necessary runtime environment changes to make the snap work here. You may also insert security confinement/deprecation/obsoletion notice of the snap here.
set \
-o errexit \
-o errtrace \
-o nounset \
-o pipefail
# GTK theme integration (we have Qt fetch the GTK theme mirroring the host Qt theme...)
#export QT_QPA_PLATFORMTHEME=kde
# Finally run the next part of the command chain
exec "${@}"