Skip to content

Commit a7e183f

Browse files
Add missing backslash for dots, cc nvm-sh#1279, 2a2b8bd, cadbbce
1 parent e47b313 commit a7e183f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ nvm_do_install() {
331331

332332
# Source nvm
333333
# shellcheck source=/dev/null
334-
. "${INSTALL_DIR}/nvm.sh"
334+
\. "${INSTALL_DIR}/nvm.sh"
335335

336336
nvm_check_global_modules
337337

update_test_mocks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ MOCKS_DIR="$PWD/test/fast/Unit tests/mocks"
99
echo "creating $MOCKS_DIR"
1010
mkdir -p "$MOCKS_DIR"
1111

12-
. "$NVM_DIR/nvm.sh" --no-use
12+
\. "$NVM_DIR/nvm.sh" --no-use
1313
nvm deactivate 2> /dev/null
1414
nvm_is_version_installed() {
1515
return 1

0 commit comments

Comments
 (0)