From: Steven Black Date: Tue, 19 Jul 2022 03:09:53 +0000 (-0400) Subject: Issue #2104: fix — Remove cruft in the stats bash script. X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=410aca3cc3677658a130e1e50eb4b2026d79ce26;p=stevenblack-hosts.git Issue #2104: fix — Remove cruft in the stats bash script. --- diff --git a/stats.sh b/stats.sh index ae6e6ffd6..8e242d804 100755 --- a/stats.sh +++ b/stats.sh @@ -1,12 +1,10 @@ #!/usr/bin/env bash echo \n "" > stats.out for TAG_DATE in $(git tag --sort=creatordate --format='%(refname:short),%(creatordate:short)'); do - # echo "$TAGDATA" + # echo "$TAG_DATE" split=(${TAG_DATE//,/ }) # echo ${split[0]} git checkout tags/${split[0]} readmeData.json entries=$(jq '.base.entries' readmeData.json) echo ${split[1]},${entries} >> stats.out done -cat stats.out -