aboutsummaryrefslogtreecommitdiffstats
path: root/dist/AppRun
diff options
context:
space:
mode:
Diffstat (limited to 'dist/AppRun')
-rw-r--r--dist/AppRun19
1 files changed, 0 insertions, 19 deletions
diff --git a/dist/AppRun b/dist/AppRun
deleted file mode 100644
index 8a2e5935..00000000
--- a/dist/AppRun
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-# The purpose of this custom AppRun script is
-# to allow symlinking the AppImage and invoking
-# the corresponding binary depending on which
-# symlink was used to invoke the AppImage
-
-HERE="$(dirname "$(readlink -f "${0}")")"
-
-if [ ! -z $APPIMAGE ] ; then
- BINARY_NAME=$(basename "$ARGV0")
- if [ -e "$HERE/usr/bin/$BINARY_NAME" ] ; then
- exec "$HERE/usr/bin/$BINARY_NAME" "$@"
- else
- exec "$HERE/usr/bin/qpdf" "$@"
- fi
-else
- exec "$HERE/usr/bin/qpdf" "$@"
-fi