From 850cb089145a764e199cb986d09bb625a6988999 Mon Sep 17 00:00:00 2001 From: vapao Date: Tue, 14 Sep 2021 09:23:09 +0800 Subject: [PATCH] fix issue --- spug_api/apps/deploy/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spug_api/apps/deploy/helper.py b/spug_api/apps/deploy/helper.py index acb9210..d439d57 100644 --- a/spug_api/apps/deploy/helper.py +++ b/spug_api/apps/deploy/helper.py @@ -208,4 +208,4 @@ class Helper: def remote_raw(self, key, ssh, command): code, out = ssh.exec_command_raw(command) if code != 0: - self.send_error(key, f'exit code: {code}') + self.send_error(key, f'exit code: {code}, {out}')