Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(bin/checkout_lastest_docs.sh): prevent
globbing
(#372)
I've run: `shellcheck bin/checkout_latest_docs.sh`; Yhe output was: `In bin/checkout_latest_docs.sh line 13: (cd resources/docs/$v && git pull) ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: (cd resources/docs/"$v" && git pull) For more information: https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ... `
- Loading branch information