Skip to content

Commit

Permalink
chore: update e2e script
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickMenoti committed Sep 26, 2024
1 parent af25624 commit 610fb90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 610fb90

Please sign in to comment.