From 823af9ff92b6c785185bbcb5e499be7ef6774bdb Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Mon, 26 Jul 2021 14:20:18 -0700 Subject: don't fail when stderr from POST-FORK grandchild process is empty Signed-off-by: Sean Whitton --- src/connection/fork.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/connection') diff --git a/src/connection/fork.lisp b/src/connection/fork.lisp index 3737a78..015cfbe 100644 --- a/src/connection/fork.lisp +++ b/src/connection/fork.lisp @@ -28,7 +28,8 @@ (upload-all-prerequisite-data connection) (eval-in-grandchild `(post-fork ,connection) `(continue-deploy* ,connection ',remaining) (out err exit) - (inform t (lines out)) + (when-let ((lines (lines out))) + (inform t lines)) (return-exit exit :on-failure (failed-change -- cgit v1.2.3