From dffdedc1a5a0aab75db3fec5fadb15c9a977d97f Mon Sep 17 00:00:00 2001 From: Ian Harris Date: Tue, 2 Nov 2021 23:12:49 -0700 Subject: [PATCH] quote `$PWD` to avoid globbing and word splitting --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 2668442..d7705da 100755 --- a/install.sh +++ b/install.sh @@ -343,7 +343,7 @@ nvm_check_global_modules() { } nvm_install_manpage() { - ln -s $PWD/nvm.1 /usr/local/share/man/man1/nvm.1 + ln -s "$PWD"/nvm.1 /usr/local/share/man/man1/nvm.1 } nvm_do_install() {