diff options
Diffstat (limited to 'bin/bootstrap')
-rwxr-xr-x | bin/bootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bootstrap b/bin/bootstrap index f033cd4..09f6e63 100755 --- a/bin/bootstrap +++ b/bin/bootstrap @@ -3,10 +3,10 @@ # After running this, other packages can be installed using 'pkg' # Without mercurial, this is pretty pointless -if ! which hg &> /dev/null; then +if ( ! which hg &> /dev/null) { echo Mercurial not found! exit 100 -fi +} # Make basic dirctories mkdir -p ~/bin |