Skip to content

Commit

Permalink
install yeoman from NPM in install script. ref yeoman#298
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Sep 10, 2012
1 parent 756db0b commit 5f0a058
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions setup/install.sh
Expand Up @@ -323,11 +323,6 @@ fi
echo ""
echo "Now the dependencies are sorted let's grab the latest yeoman goodness"

#grab the latest yeoman tarball
curl https://dl.dropbox.com/u/39519/"$YEOMANVER".tar.gz | "$tar" -xz
cd "$YEOMANVER"

cd cli
#install yeoman as a global npm package
echo ""
echo "Alright buckaroo, hold on to your hats.."
Expand All @@ -339,9 +334,9 @@ echo "Okay here we go..."
if [ "$NEEDSUDO" -eq 1 ]; then
echo ""
echo "You *may* be prompted now for your sudo password to kick off the npm install. Please hold."
sudo npm install . -g
sudo npm install yeoman -g
else
npm install . -g
npm install yeoman -g
fi

echo ""
Expand Down

0 comments on commit 5f0a058

Please sign in to comment.