Merge pull request #176 from fbs/installer

Check emacs version during installation of prelude.
This commit is contained in:
Bozhidar Batsov 2012-06-16 09:38:03 -07:00
commit ad521cb6e3

View file

@ -32,6 +32,11 @@ else
printf "\e[32mnot found.\e[0m\n" printf "\e[32mnot found.\e[0m\n"
fi fi
if [ $(emacs --version 2>/dev/null | sed -n 's/.*[^0-9.]\([0-9]*\.[0-9.]*\).*/\1/p;q' | sed 's/\..*//g') -lt 24 ]
then
printf "\e[31mWarning.\e[0m Prelude depends on emacs \e[31m24\e[0m!\n"
fi
printf "Cloning Emacs Prelude from GitHub... " printf "Cloning Emacs Prelude from GitHub... "
/usr/bin/env git clone $PRELUDE_URL $PRELUDE_INSTALL_DIR > /dev/null 2>&1 /usr/bin/env git clone $PRELUDE_URL $PRELUDE_INSTALL_DIR > /dev/null 2>&1
cd $PRELUDE_INSTALL_DIR cd $PRELUDE_INSTALL_DIR