change string comparison

This commit is contained in:
alex-frost 2014-04-01 19:53:49 +01:00
parent 4b2fc376de
commit df9d4fa2e8

View File

@ -4,7 +4,7 @@ if [ ! -d "$HOME/.yadr" ]; then
echo "Installing YADR for the first time"
git clone https://github.com/skwp/dotfiles.git "$HOME/.yadr"
cd "$HOME/.yadr"
[ "$1" == "ask" ] && export ASK="true"
[ "$1" = "ask" ] && export ASK="true"
rake install
else
echo "YADR is already installed"