diff options
Diffstat (limited to 'bin/bootstrap')
-rwxr-xr-x | bin/bootstrap | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/bootstrap b/bin/bootstrap index 7609ed8..60f0031 100755 --- a/bin/bootstrap +++ b/bin/bootstrap @@ -10,6 +10,11 @@ mkdir -p ~/lib mkdir -p ~/packages mkdir -p ~/var/tmp/incoming +if ( ! which python &> /dev/null ) { + echo "No Python found. This hsot sucks." + exit 200 +} + if ( ! which hg &> /dev/null) { echo 'Mercurial not found, fetching...' cd ~/packages |