diff options
author | Joan Touzet <wohali@apache.org> | 2020-04-30 09:09:20 -0700 |
---|---|---|
committer | Joan Touzet <wohali@apache.org> | 2020-04-30 09:09:20 -0700 |
commit | f5b46be54d52479d4248b39caee73dbc3248ca31 (patch) | |
tree | 3b192a7764eca6fe71c1444077aab79acb2736e7 | |
parent | 10997729c956fb5edfbdf243503380e48f3fe0bd (diff) | |
download | couchdb-f5b46be54d52479d4248b39caee73dbc3248ca31.tar.gz |
Fix python-black target for Windows
-rw-r--r-- | Makefile.win | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.win b/Makefile.win index 198c94586..700e7b110 100644 --- a/Makefile.win +++ b/Makefile.win @@ -186,7 +186,7 @@ python-black: .venv/bin/black @python.exe -c "import sys; exit(1 if sys.version_info >= (3,6) else 0)" || \ .venv\Scripts\black.exe --check \ --exclude="build/|buck-out/|dist/|_build/|\.git/|\.hg/|\.mypy_cache/|\.nox/|\.tox/|\.venv/|src/rebar/pr2relnotes.py|src/fauxton" \ - build-aux\*.py dev\run test\javascript\run src\mango\test\*.py src\docs\src\conf.py src\docs\ext\*.py . + build-aux dev\run test\javascript\run src\mango\test src\docs\src\conf.py src\docs\ext . python-black-update: .venv/bin/black @python.exe -c "import sys; exit(1 if sys.version_info < (3,6) else 0)" || \ @@ -194,7 +194,7 @@ python-black-update: .venv/bin/black @python.exe -c "import sys; exit(1 if sys.version_info >= (3,6) else 0)" || \ .venv\Scripts\black.exe \ --exclude="build/|buck-out/|dist/|_build/|\.git/|\.hg/|\.mypy_cache/|\.nox/|\.tox/|\.venv/|src/rebar/pr2relnotes.py|src/fauxton" \ - build-aux\*.py dev\run test\javascript\run src\mango\test\*.py src\docs\src\conf.py src\docs\ext\*.py . + build-aux dev\run test\javascript\run src\mango\test src\docs\src\conf.py src\docs\ext . .PHONY: elixir elixir: export MIX_ENV=integration |