Skip to content

Commit

Permalink
Close npm#1088 Configure needs submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Jun 27, 2011
1 parent 2588147 commit 896484a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ while [ $# -gt 0 ]; do
shift
done

# Pull in submodules, since npm can't work without them.
if [ -f .git ]; then
git submodule update --init
fi

for c in "${CONFIGS[@]}"; do
echo '+node ./bin/npm.js config set "'"$c"'"'
node ./bin/npm.js config set "$c"
Expand Down

0 comments on commit 896484a

Please sign in to comment.