mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 11:46:35 +00:00
20 lines
482 B
Plaintext
20 lines
482 B
Plaintext
|
#!/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
|