diff --git a/make/projects-dir.mk b/make/projects-dir.mk index 115a0063..09c9e746 100644 --- a/make/projects-dir.mk +++ b/make/projects-dir.mk @@ -309,6 +309,8 @@ pull-all: purge git-get git-pull-all diff-all diff: $(SSH_WRAPPER_SH) $(PGIT_SH) --porcelain diff +diff-projects: + PGIT_SH_PROJECTS="$(patsubst %/.git,%,$(wildcard $(addsuffix /.git,$(shell make -s build-order))))" $(PGIT_SH) --porcelain diff get-official: git-get-official get-maintainer: git-get-maintainer diff --git a/src/python/jw/pkg/lib/ec/ssh/AsyncSSH.py b/src/python/jw/pkg/lib/ec/ssh/AsyncSSH.py index c1e3fd99..a6ce7af5 100644 --- a/src/python/jw/pkg/lib/ec/ssh/AsyncSSH.py +++ b/src/python/jw/pkg/lib/ec/ssh/AsyncSSH.py @@ -215,7 +215,7 @@ class AsyncSSH(Base): return if proc.stdin is not None: proc.stdin.write(data) - await proc.stdin.drain() + await proc.stdin.drain() async def _pump_stdout() -> None: while True: