You've already forked openshot-qt
mirror of
https://github.com/OpenShot/openshot-qt.git
synced 2026-03-02 08:56:08 -08:00
17 lines
440 B
Bash
Executable File
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 "$@"
|