Skip to content

Commit

Permalink
output aws s3 cp to stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
ajschmidt8 authored and jjacobelli committed Apr 12, 2024
1 parent cc22a32 commit 7cac1ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _rapids-download-from-s3
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ if [ "${CI:-false}" = "false" ]; then
else
rapids-echo-stderr "Downloading and decompressing ${s3_dl_path} into ${untar_dest}"
rapids-echo-stderr "Using custom script"
aws s3 cp "${s3_dl_path}" /tmp/tmp.tar.gz
aws s3 cp "${s3_dl_path}" /tmp/tmp.tar.gz 1>&2
tar xzf /tmp/tmp.tar.gz -C "${untar_dest}"
rm /tmp/tmp.tar.gz
rm -rf /tmp/tmp.tar.gz
fi

# echo path to untarred contents
Expand Down

0 comments on commit 7cac1ab

Please sign in to comment.