Skip to content

Commit

Permalink
Fix a couple bugs and enable the --debug flag for HEAD version.
Browse files Browse the repository at this point in the history
  • Loading branch information
creationix committed Apr 20, 2010
1 parent 53e64fc commit 54495e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ nvm()
cd "$NVM_DIR/src" && \
git clone git://github.com/ry/node.git && \
cd node && \
./configure --prefix="$NVM_DIR/HEAD" && \
./configure --debug --prefix="$NVM_DIR/HEAD" && \
make && \
make install && \
nvm use HEAD
Expand All @@ -50,8 +50,8 @@ nvm()
return;
fi
cd "$NVM_DIR/src/node" && \
git pull --rebase origin master
./configure && \
git pull origin master && \
./configure --debug --prefix="$NVM_DIR/HEAD" && \
make clean all && \
make install && \
nvm use HEAD
Expand Down

0 comments on commit 54495e5

Please sign in to comment.