diff options
Diffstat (limited to 'scripts/mingw-x-build-dependencies.sh')
-rwxr-xr-x | scripts/mingw-x-build-dependencies.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/mingw-x-build-dependencies.sh b/scripts/mingw-x-build-dependencies.sh index 168b847..c3d5179 100755 --- a/scripts/mingw-x-build-dependencies.sh +++ b/scripts/mingw-x-build-dependencies.sh @@ -46,13 +46,13 @@ fi if [ ! -e $MXEDIR ]; then mkdir -p $MXEDIR - cd $MXEDIR/.. - echo "Downloading MXE into " $PWD - if [ "`echo $* | grep 64`" ]; then - git clone -b multi-rebase git://github.com/tonytheodore/mxe.git ./mxe-w64 - else - git clone git://github.com/mxe/mxe.git - fi +fi +cd $MXEDIR/.. +echo "Downloading MXE into " $PWD +if [ "`echo $* | grep 64`" ]; then + git clone -b multi-rebase git://github.com/tonytheodore/mxe.git ./mxe-w64 +else + git clone git://github.com/mxe/mxe.git fi echo "entering" $MXEDIR |