Skip to content

Commit 09b2a9f

Browse files
adam-grant-hendryLee-W
authored andcommitted
fix(scripts/test): use double-quotes
Command Prompt on Windows requires double-quotes. Otherwise, the command `${PREFIX}pydocstyle --convention=google --add-ignore=D1,D415 --match-dir="^(?![.]|venv).*"` will fail with 'venv).*' is not recognized as an internal or external command this will not affect the command in other Linux-based/bash shells.
1 parent d8d3c82 commit 09b2a9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ ${PREFIX}black commitizen tests --check
88
${PREFIX}isort --check-only commitizen tests
99
${PREFIX}flake8 commitizen/ tests/
1010
${PREFIX}mypy commitizen/ tests/
11-
${PREFIX}pydocstyle --convention=google --add-ignore=D1,D415 --match-dir='^(?![.]|venv).*'
11+
${PREFIX}pydocstyle --convention=google --add-ignore=D1,D415 --match-dir="^(?![.]|venv).*"
1212
${PREFIX}commitizen check --rev-range origin/master..

0 commit comments

Comments
 (0)