From dcd008ff61d18fc3b27f602e4bfa9fbe1a73503b Mon Sep 17 00:00:00 2001 From: Shirsh Zibbu Date: Tue, 7 Mar 2017 05:46:45 +0530 Subject: [PATCH] [Refactor] remove unnecessary quotes --- nvm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvm.sh b/nvm.sh index 336760e..453df19 100644 --- a/nvm.sh +++ b/nvm.sh @@ -771,7 +771,7 @@ nvm_strip_iojs_prefix() { if [ "${1-}" = "${NVM_IOJS_PREFIX}" ]; then nvm_echo else - nvm_echo "${1#"${NVM_IOJS_PREFIX}"-}" + nvm_echo "${1#${NVM_IOJS_PREFIX}-}" fi }