Files
UltraGrid/data/scripts/Linux-AppImage/uv-wrapper.sh
Martin Pulec bee6bf675b Restruct AppImage: store files in $APP/usr
Follow the usuall AppImage pattern using the prefix $APP/usr instead of
the AppDir root directly for program data.
2021-05-20 11:43:59 +02:00

12 lines
271 B
Bash
Executable File

#!/bin/sh
set -u
DIR=`dirname $0`
export LD_LIBRARY_PATH=$DIR/usr/lib${LD_LIBRARY_PATH:+":$LD_LIBRARY_PATH"}
# there is an issue with running_from_path() which evaluates this executable
# as being system-installed
#export PATH=$DIR/bin:$PATH
exec $DIR/usr/bin/uv "$@"