mirror of
https://github.com/shirayu/whispering.git
synced 2024-11-21 08:21:02 +00:00
Fix for Windows
This commit is contained in:
parent
84f8d0dfe7
commit
177fc3d353
2 changed files with 3 additions and 3 deletions
2
Makefile
2
Makefile
|
@ -21,7 +21,7 @@ yamllint:
|
|||
| xargs yamllint --no-warnings
|
||||
|
||||
version_check:
|
||||
git tag | python ./scripts/check_version.py --toml pyproject.toml -i README.md --tags /dev/stdin
|
||||
git tag | python ./scripts/check_version.py --toml pyproject.toml -i README.md --tags -
|
||||
|
||||
lint_python: flake8 black isort pydocstyle version_check pytest
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ def get_opts() -> argparse.Namespace:
|
|||
oparser = argparse.ArgumentParser()
|
||||
oparser.add_argument("--input", "-i", type=Path)
|
||||
oparser.add_argument("--toml", "-t", type=Path, required=True)
|
||||
oparser.add_argument("--tags", type=Path)
|
||||
oparser.add_argument("--tags")
|
||||
return oparser.parse_args()
|
||||
|
||||
|
||||
|
@ -47,7 +47,7 @@ def main() -> None:
|
|||
|
||||
if opts.tags:
|
||||
tags = []
|
||||
if str(opts.tags) == "/dev/stdin":
|
||||
if opts.tags == "-":
|
||||
for line in sys.stdin:
|
||||
tags.append(line[:-1])
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue