Skip to content

Commit

Permalink
Exit the right file fixes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
ranguard committed May 24, 2012
1 parent 12f97c6 commit 88a2b25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 1 addition & 4 deletions scripts/install_perl_on_nix.sh
Expand Up @@ -10,10 +10,7 @@ PBREW_BASHRC=~/perl5/perlbrew/etc/bashrc


# See if 'make' is installed # See if 'make' is installed
if [ "" == "$(which 'make')" ]; then if [ "" == "$(which 'make')" ]; then
echo "Unable to find 'make' please install 'Command Line Tools for XCode'" echo "Unable to find 'make' please install"
echo "this can be installed on it's own, or from within Xcode, both of"
echo "which are available from https://developer.apple.com/downloads/"
echo "(free registration required)"
exit; exit;
fi; fi;


Expand Down
5 changes: 4 additions & 1 deletion scripts/install_perl_on_osx.sh
Expand Up @@ -11,7 +11,10 @@ PBREW_BASHRC=~/perl5/perlbrew/etc/bashrc


# See if 'make' is installed # See if 'make' is installed
if [ "" == "$(which 'make')" ]; then if [ "" == "$(which 'make')" ]; then
echo "Unable to find 'make' please check you have Apple's developer tools installed" echo "Unable to find 'make' please install 'Command Line Tools for XCode'"
echo "this can be installed on it's own, or from within Xcode, both of"
echo "which are available from https://developer.apple.com/downloads/"
echo "(free registration required)"
exit; exit;
fi; fi;


Expand Down

0 comments on commit 88a2b25

Please sign in to comment.