From b889760a1527207a409d89aeb84b684cc85d7be0 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Thu, 6 May 2021 12:55:26 -0700 Subject: swap order of stdout and stderr when reporting RUN-FAILED Signed-off-by: Sean Whitton --- src/connection.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/connection.lisp') diff --git a/src/connection.lisp b/src/connection.lisp index 487559d..75617cf 100644 --- a/src/connection.lisp +++ b/src/connection.lisp @@ -184,11 +184,11 @@ if they need to handle streams and strings differently.")) (:report (lambda (condition stream) (format stream - "~&'~A' failed, exit code ~A~%~%stdout was:~%~A~&~%stderr:~%~A" + "~&'~A' failed, exit code ~A~%~%stderr was:~%~A~&~%stdout:~%~A" (failed-cmd condition) (failed-exit-code condition) - (failed-stdout condition) - (failed-stderr condition))))) + (failed-stderr condition) + (failed-stdout condition))))) (defmacro with-remote-temporary-file ((file &key -- cgit v1.2.3