[Tests] Replace all dots with backslash dots

This commit is contained in:
Qiangjun Ran
2016-11-04 13:15:18 +08:00
committed by Jordan Harband
parent 2a2b8bdeb3
commit cadbbced20
167 changed files with 188 additions and 188 deletions

View File

@@ -10,7 +10,7 @@ if ! supports_source_options; then
exit 0;
fi
. ../../nvm.sh
\. ../../nvm.sh
nvm install 4.1.0 || die 'install of v4.1.0 failed'
nvm_version 4.1.0 >/dev/null 2>&1 || die "v4.1.0 not installed: $(nvm ls)"
nvm deactivate || die 'nvm deactivate failed'
@@ -20,7 +20,7 @@ NVM_CURRENT="$(nvm current)"
nvm unload || die 'nvm unload failed'
. ../../nvm.sh --no-use
\. ../../nvm.sh --no-use
EXIT_CODE="$(echo $?)"
echo 'sourcing complete.'