From 3c6e96dc76eb055366c9ad94bf638b6fb8dd5bf0 Mon Sep 17 00:00:00 2001 From: "gregory.hainaut@gmail.com" Date: Tue, 15 Feb 2011 08:24:16 +0000 Subject: [PATCH] linux launcher: replace chdir by cd for portability... git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4300 96395faa-99c1-11dd-bbfe-3dabce05a288 --- bin/launch_pcsx2_linux.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/launch_pcsx2_linux.sh b/bin/launch_pcsx2_linux.sh index ba8216a304..e98cda504d 100755 --- a/bin/launch_pcsx2_linux.sh +++ b/bin/launch_pcsx2_linux.sh @@ -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