Merge pull request #463 from alex-frost/master

change string comparison
This commit is contained in:
Yan Pritzker 2014-04-01 15:35:40 -05:00
commit 5984dbb710

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"