From: Carl Hetherington Date: Tue, 2 Mar 2021 11:37:07 +0000 (+0100) Subject: Remove unnecessary APPDIR variable; AppImage does this for us. X-Git-Tag: v2.15.133~9 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=ddbd830b576dead5e453e985eae6fcbb9b414f0e Remove unnecessary APPDIR variable; AppImage does this for us. --- diff --git a/cscript b/cscript index 588b2be27..2bf20ed74 100644 --- a/cscript +++ b/cscript @@ -634,7 +634,6 @@ def make_appimage(target, nice_name, internal_name, version): target.command('cp -r %s/share/libdcp/xsd build/%s.AppDir/usr/share/libdcp/' % (target.directory, nice_filename)) with open('build/%s.AppDir/AppRun' % nice_filename, 'w') as f: print('#!/bin/bash', file=f) - print('export APPDIR="$(dirname "$(readlink -f "$0")")"', file=f) print('export PATH=$APPDIR/usr/bin:$PATH', file=f) print('export XDG_DATA_DIRS="$APPDIR/usr/share/:/usr/share/:$XDG_DATA_DIRS"', file=f) print('"$APPDIR"/usr/bin/%s $@' % internal_name, file=f)