refactor(readme-generator/regen_readme_in_batch): upsi, broke condition
This commit is contained in:
parent
d6c6eab023
commit
945d6f3f8b
1 changed files with 1 additions and 1 deletions
|
@ -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 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 = await diff_not_empty.stdout.read()
|
||||||
diff_not_empty = diff_not_empty.decode().strip()
|
diff_not_empty = diff_not_empty.decode().strip()
|
||||||
if diff_not_empty:
|
if not diff_not_empty:
|
||||||
print("nothing to do")
|
print("nothing to do")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue