diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index bfe616fc4..cb1ed6051 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -21,7 +21,7 @@ export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # If you have an .nvmrc file, we use the relevant node version -if [[ -f ".nvmrc" ]]; then +if [ -f ".nvmrc" ]; then nvm use fi ```