From 610fb908230a39d7b7da4f44d857bedcd2dac86a Mon Sep 17 00:00:00 2001 From: PatrickMenoti <82882574+PatrickMenoti@users.noreply.github.com> Date: Thu, 26 Sep 2024 16:13:28 -0300 Subject: [PATCH] chore: update e2e script --- scripts/e2e.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/e2e.sh b/scripts/e2e.sh index ebb4d14b7..87a12ff8f 100755 --- a/scripts/e2e.sh +++ b/scripts/e2e.sh @@ -20,8 +20,8 @@ token=$TOKEN # Function to list and delete edge storage buckets delete_edge_storage_buckets() { # List the buckets with page size 1000, skip the header line, and delete each bucket - "$full_main_go_path" list edge-storage bucket --page-size 1000 | awk 'NR>1 {print $1}' | while read -r name; do - "$full_main_go_path" delete edge-storage bucket --name "$name" --force + go run "$full_main_go_path" list edge-storage bucket --page-size 1000 | awk 'NR>1 {print $1}' | while read -r name; do + go run "$full_main_go_path" delete edge-storage bucket --name "$name" --force done }