diff --git a/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh b/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh index e32f3a766..4a2cfcfbe 100755 --- a/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh +++ b/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh @@ -43,7 +43,7 @@ end_date=$(date --date "-7 day" "+%Y-%m-%d") dates_to_clean=() # get all dates of the last week -while [[ "$end_date" != "$start_date" ]]; do +while [[ $end_date != "$start_date" ]]; do dates_to_clean+=($end_date) end_date=$(date --date "$end_date +1 day" "+%Y-%m-%d") done