1
0
Fork 0

refactor(readme-generator/regen_readme_in_batch): upsi, broke condition

This commit is contained in:
Laurent Peuch 2024-03-29 06:58:59 +01:00
parent d6c6eab023
commit 945d6f3f8b

View file

@ -55,7 +55,7 @@ async def regen_readme(repository, branch):
diff_not_empty = await asyncio.create_subprocess_shell(" ".join(["git", "diff", "HEAD", "--compact-summary"]), cwd=folder, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.STDOUT)
diff_not_empty = await diff_not_empty.stdout.read()
diff_not_empty = diff_not_empty.decode().strip()
if diff_not_empty:
if not diff_not_empty:
print("nothing to do")
return