mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
11b5efc631
commit
3c6e96dc76
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue