Properly remove the tar file.

master
Logan Smyth 2013-10-23 22:14:02 -07:00
parent d3f04c793e
commit 473dd86f48
1 changed files with 2 additions and 2 deletions

4
nvm.sh
View File

@ -262,8 +262,8 @@ nvm() {
curl -L -C - --progress-bar $url -o "$tmptarball" && \
nvm_checksum `${shasum} "$tmptarball" | awk '{print $1}'` $sum && \
tar -xzf "$tmptarball" -C "$tmpdir" --strip-components 1 && \
mv "$tmpdir" "$NVM_DIR/$VERSION" && \
rm -f "$tmptarball"
rm "$tmptarball" && \
mv "$tmpdir" "$NVM_DIR/$VERSION"
)
then
nvm use $VERSION