You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ poetry run python -m pydocstyle --convention=google --add-ignore=D1,D415 --match-dir='^(?![.]|venv).*'
Expected Output:Runs and passes (no output) Actual Output:'venv).*' is not recognized as an internal or external command, operable program or batch file.
$ poetry run python -m pydocstyle --convention=google --add-ignore=D1,D415 --match-dir="^(?![.]|venv).*"
Expected Output:Runs and passes (no output) Actual Output:bash: ![.]: event not found
Description
First discovered in MinGW bug report #2303, pipes seem to fail in certain circumstances in the bash that ships with Git for Windows:
Example 1
Expected Output:
a=aActual Output:
a=error_01.mp4
Example 2
For reference, please see
commitizenPR #605$ poetry run python -m pydocstyle --convention=google --add-ignore=D1,D415 --match-dir='^(?![.]|venv).*'Expected Output: Runs and passes (no output)
Actual Output:
'venv).*' is not recognized as an internal or external command, operable program or batch file.$ poetry run python -m pydocstyle --convention=google --add-ignore=D1,D415 --match-dir="^(?![.]|venv).*"Expected Output: Runs and passes (no output)
Actual Output:
bash: ![.]: event not founderror_02.mp4
Verification
Windows Version
OS: determined with
cmd.exe /c verGit: determined with
git --versionBash: determined with
uname:MINGW environments affected
Expected behavior
Please see details in
Description.Actual behavior
Please see details in
Description.Repro steps
Please see details in
Description.Are you willing to submit a PR?
If I know how to fix it, yes.