Skip to content

Commit

Permalink
Fix dist copy to avoid extra directory
Browse files Browse the repository at this point in the history
  • Loading branch information
rocallahan committed Sep 27, 2023
1 parent 54e8f66 commit 316fdb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release-process/test-system.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 316fdb6

Please sign in to comment.