linux launcher: replace chdir by cd for portability...

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4300 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gregory.hainaut@gmail.com 2011-02-15 08:24:16 +00:00
parent 11b5efc631
commit 3c6e96dc76
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ current_script=$0
PWD_old=$PWD
# Go to the script directory
chdir `dirname $current_script`
cd `dirname $current_script`
if [ -e pcsx2 ] ; then
./pcsx2
else
@ -27,4 +27,4 @@ else
fi
# Go back to the old directory
chdir $PWD_old
cd $PWD_old