From 1d3da35b3c1675f2c79d63848c6d1b8bf237544b Mon Sep 17 00:00:00 2001 From: Captain Beyond Date: Sat, 16 Nov 2024 04:03:29 -0600 Subject: [PATCH] add logging to scp --- run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run b/run index 74abf45..6cfb897 100755 --- a/run +++ b/run @@ -10,7 +10,7 @@ TARGET = os.environ['PLUGIN_TARGET'] def deploy(source, target, keyfile): for source_file in glob.glob(source): - run(["scp", "-i", keyfile, "-o", "StrictHostKeyChecking=no", "-r", source_file, target]) + run(["scp", "-v", "-i", keyfile, "-o", "StrictHostKeyChecking=no", "-r", source_file, target]) with tempfile.NamedTemporaryFile() as deploy_key: deploy_key.write(os.environ['PLUGIN_KEY'].encode())