Skip to content

Commit 1d44193

Browse files
committed
fix python script again (2)
1 parent 6880b97 commit 1d44193

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

actions-runner-worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def readfull(fd: int, l: int):
2525

2626
def writefull(fd: int, buf: bytes):
2727
written: int = 0
28-
while written >= len(buf):
28+
while written < len(buf):
2929
w = os.write(fd, buf[written:])
3030
if w <= 0:
3131
raise RuntimeError("unexpected write result: {}".format(w))

0 commit comments

Comments
 (0)