2011-02-14 18:50:49 +00:00
|
|
|
#!/bin/sh -e
|
2011-02-12 10:42:32 +00:00
|
|
|
|
|
|
|
# This script is a small wrapper to the PCSX2 exectuable. The purpose is to
|
|
|
|
# launch PCSX2 from the same repository every times.
|
|
|
|
# Rationale: There is no guarantee on the directory when PCSX2 is launched from a shortcut.
|
|
|
|
# This behavior trigger the first time wizards everytime...
|
|
|
|
|
2011-02-14 19:02:48 +00:00
|
|
|
current_script=$0
|
|
|
|
|
|
|
|
[ $current_script = "launch_pcsx2_linux.sh" ] || [ $current_script = "sh" ] || [ $current_script = "bash" ] && \
|
|
|
|
echo "Error the script was directly 'called'" && \
|
|
|
|
echo "Use either /absolute_path/launch_pcsx2_linux.sh or ./relative_path/launch_pcsx2_linux.sh" && exit 1;
|
2011-02-14 18:50:49 +00:00
|
|
|
|
2011-02-12 10:42:32 +00:00
|
|
|
# Note: sh (dash on debian) does not support pushd, popd...
|
|
|
|
# Save current directory
|
|
|
|
PWD_old=$PWD
|
|
|
|
|
|
|
|
# Go to the script directory
|
2011-02-15 08:24:16 +00:00
|
|
|
cd `dirname $current_script`
|
2011-02-14 19:02:48 +00:00
|
|
|
if [ -e pcsx2 ] ; then
|
|
|
|
./pcsx2
|
|
|
|
else
|
|
|
|
echo "Error PCSX2 not found"
|
|
|
|
echo "Maybe the script was directly 'called'"
|
|
|
|
echo "Use either /absolute_path/launch_pcsx2_linux.sh or ./relative_path/launch_pcsx2_linux.sh"
|
|
|
|
exit 1
|
|
|
|
fi
|
2011-02-12 10:42:32 +00:00
|
|
|
|
|
|
|
# Go back to the old directory
|
2011-02-15 08:24:16 +00:00
|
|
|
cd $PWD_old
|