Skip to content

Commit

Permalink
2022.09.09:
Browse files Browse the repository at this point in the history
* fixed: bash/github/accum-stats.sh: incorrect removed dates list in case of more than 1 date
  • Loading branch information
andry81 committed Sep 9, 2022
1 parent cf1b72b commit 7f1c630
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion bash/github/accum-stats.sh
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,8 @@ uniques_outdated_next=$uniques_outdated_prev
stats_removed_dates=()
echo "stats_accum_timestamps=${stats_accum_timestamps[@]}"
j=0
for (( i=0; i < ${#stats_accum_timestamps[@]}; i++ )); do
if [[ -z "$first_stats_timestamp" || "${stats_accum_timestamps[i]}" < "$first_stats_timestamp" ]]; then
Expand All @@ -347,7 +349,7 @@ for (( i=0; i < ${#stats_accum_timestamps[@]}; i++ )); do
fi
(( j++ ))
stats_removed_dates[${#stats_removed_dates[@]}]="${stats_accum_timestamps/%T*}"
stats_removed_dates[${#stats_removed_dates[@]}]="${stats_accum_timestamps[i]/%T*}"
fi
done
Expand Down
5 changes: 4 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
2022.09.09:
* fixed: bash/github/accum-stats.sh: incorrect removed dates list in case of more than 1 date

2022.09.01:
* fixed: bash/cache/accum-content.sh: execute content config scripts ina subshell to automatically drop the exported variables
* fixed: bash/cache/accum-content.sh: execute content config scripts in a subshell to automatically drop the exported variables

2022.09.01:
* fixed: bash/cache/accum-content.sh: `expired-delta` always less than 24 hours
Expand Down

0 comments on commit 7f1c630

Please sign in to comment.