Skip to content

Commit

Permalink
test/upload-results: run aws command without capturing output
Browse files Browse the repository at this point in the history
Good for troubleshooting.
  • Loading branch information
achilleas-k authored and ondrejbudai committed Apr 16, 2024
1 parent cf81bc7 commit 0a6f770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/scripts/upload-results
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def main():
s3url = testlib.gen_build_info_s3(distro, arch, manifest_id)

print(f"⬆️ Uploading {build_dir} to {s3url}")
testlib.runcmd(["aws", "s3", "cp", "--acl=private", "--recursive", build_dir+"/", s3url])
testlib.runcmd_nc(["aws", "s3", "cp", "--acl=private", "--recursive", build_dir+"/", s3url])
print("✅ DONE!!")


Expand Down

0 comments on commit 0a6f770

Please sign in to comment.