From 43fc0821d8ab5c223e338a1c7b6213feecbf86cd Mon Sep 17 00:00:00 2001 From: Darsey Litzenberger Date: Thu, 19 Mar 2026 20:31:04 -0600 Subject: [PATCH] Don't suppress ssh errors from scp output --- mtik_cert_pusher/connector.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mtik_cert_pusher/connector.py b/mtik_cert_pusher/connector.py index 07ccbe8..b67ee6d 100644 --- a/mtik_cert_pusher/connector.py +++ b/mtik_cert_pusher/connector.py @@ -124,7 +124,6 @@ class SSHConnector(Connector): # Copy them in a single scp command cmd = self._scp_args( [ - "-q", *(str(p) for p in tempfile_paths), f"{self.ssh_host}:{remote_directory}", ]