Skip to content

Commit

Permalink
[E2E] - Fixing Debug Bucket (#1094)
Browse files Browse the repository at this point in the history
Fixing the reference to the debug bucket
  • Loading branch information
gambol99 authored Nov 14, 2023
1 parent caf476b commit b917838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/check-suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ run_diagnosis() {
if kubectl cluster-info dump --namespaces terraform-system,apps --output-directory=/tmp/diagnostics >/dev/null; then
# @step: upload the files to the bucket
BUCKET="${DIAGNOSTICS}/${GITHUB_RUN_NUMBER}"
if ! aws s3 cp /tmp/diagnostics "s3://{BUCKET}" --acl private --recursive >/dev/null; then
if ! aws s3 cp /tmp/diagnostics "s3://${BUCKET}" --acl private --recursive >/dev/null; then
echo "Failed to copy all the diagnostics"
exit 1
fi
Expand Down

0 comments on commit b917838

Please sign in to comment.