Files
openshot-qt/installer/launch-linux.sh
2020-10-26 14:20:27 -05:00

17 lines
440 B
Bash
Executable File

#!/bin/sh
# Add the current folder the library path
HERE=$(dirname "$(realpath "$0")")
export LD_LIBRARY_PATH="${HERE}"
# Set some environment variables
export QT_PLUGIN_PATH="${HERE}"
# For Debian-based systems with newer openssl, see:
# https://github.com/OpenShot/openshot-qt/issues/3242
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=918727
export OPENSSL_CONF="/dev/null"
# Launch application
exec "${HERE}"/openshot-qt "$@"