install: don't output "additional options" when there are none.

master
Jordan Harband 2014-09-14 16:04:51 -07:00
parent 4c948cf422
commit 3d3145f2e0
1 changed files with 3 additions and 1 deletions

4
nvm.sh
View File

@ -495,7 +495,9 @@ nvm() {
fi fi
fi fi
echo "Additional options while compiling: $ADDITIONAL_PARAMETERS" if [ -n "$ADDITIONAL_PARAMETERS" ]; then
echo "Additional options while compiling: $ADDITIONAL_PARAMETERS"
fi
tarball='' tarball=''
sum='' sum=''