From 410aca3cc3677658a130e1e50eb4b2026d79ce26 Mon Sep 17 00:00:00 2001 From: Steven Black Date: Mon, 18 Jul 2022 23:09:53 -0400 Subject: [PATCH] =?UTF-8?q?Issue=20#2104:=20fix=20=E2=80=94=20Remove=20cru?= =?UTF-8?q?ft=20in=20the=20stats=20bash=20script.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stats.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 -