From ddbd830b576dead5e453e985eae6fcbb9b414f0e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 2 Mar 2021 12:37:07 +0100 Subject: [PATCH] Remove unnecessary APPDIR variable; AppImage does this for us. --- cscript | 1 - 1 file changed, 1 deletion(-) 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) -- 2.30.2