diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-05-26 22:56:34 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-05-26 22:56:34 +0200 |
commit | e129f0ade4b9ed90826aebab7028defbf0bbd719 (patch) | |
tree | fb8b821f973049c90d49f3a5b92d8c3105e1931c /bin/bootstrap | |
parent | 9cb09d28b66738af769e3317053174489cba64fb (diff) |
bin/bootstrap: style change
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 |