From 316fdb663c90a0717a34d61bb0a0ef6279cddbd0 Mon Sep 17 00:00:00 2001 From: Robert O'Callahan Date: Thu, 28 Sep 2023 00:39:00 +1300 Subject: [PATCH] Fix dist copy to avoid extra directory --- release-process/test-system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-process/test-system.py b/release-process/test-system.py index d216e4ec869..168bc5db1e4 100755 --- a/release-process/test-system.py +++ b/release-process/test-system.py @@ -177,7 +177,7 @@ def config_script_function(config_key): ]).encode('utf-8') + b'\n' + rr_testing_script vm.ssh(['/bin/bash', '-s'], full_script) if args.dist_files_dir is not None: - vm.scp_from(['-r'], '/tmp/dist', args.dist_files_dir) + vm.scp_from(['-r'], '/tmp/dist/*', args.dist_files_dir) success = True finally: if (not success and args.keep_vm_on_error) or args.keep_vm: