From feba38c28bd59e4b18c2fcf9fc721fa25e1941e8 Mon Sep 17 00:00:00 2001 From: Isaac <> Date: Thu, 6 Nov 2025 00:27:05 +0400 Subject: [PATCH] Debug --- build-system/Make/RemoteBuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-system/Make/RemoteBuild.py b/build-system/Make/RemoteBuild.py index bf854a287f..6d108b3dcc 100644 --- a/build-system/Make/RemoteBuild.py +++ b/build-system/Make/RemoteBuild.py @@ -26,7 +26,7 @@ def import_module_from_file(module_name, file_path): def session_scp_upload(session, source_path, destination_path): print('Using ssh private key path {}'.format(session.private_key_path)) - scp_command = 'scp -i {privateKeyPath} -o LogLevel=ERROR -o StrictHostKeyChecking=accept-new -o UserKnownHostsFile=/dev/null -pr {source_path} containerhost@"{ipAddress}":{destination_path}'.format( + scp_command = 'scp -v -i {privateKeyPath} -o LogLevel=VERBOSE -o StrictHostKeyChecking=accept-new -o UserKnownHostsFile=/dev/null -pr {source_path} containerhost@"{ipAddress}":{destination_path}'.format( privateKeyPath=session.private_key_path, ipAddress=session.ip_address, source_path=shlex.quote(source_path),