summaryrefslogtreecommitdiff
path: root/emulators/linux-ePSXe/files/epsxe
blob: b50f5f52c02a10cbbff601d9c7275efb73cb917d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# epsxe - ePSXe launcher
#
# (c) 2002-2003 Jean-Yves Lefort.
# All rights reserved.

USERDIR=$HOME/.epsxe

if [ ! -x $USERDIR/epsxe ]; then
    echo "$USERDIR/epsxe not found or not executable."
    echo "You should run epsxe-install."
    exit 1
fi

cd $USERDIR && exec ./epsxe "$@"