Issue #2104: fix — Remove cruft in the stats bash script.
authorSteven Black <redacted>
Tue, 19 Jul 2022 03:09:53 +0000 (23:09 -0400)
committerSteven Black <redacted>
Tue, 19 Jul 2022 03:21:23 +0000 (23:21 -0400)
stats.sh

index ae6e6ffd6f59668c23a56a0521c07184714ed5f3..8e242d8049be2de45845b8e571fe660e76b526ad 100755 (executable)
--- 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
-
git clone https://git.99rst.org/PROJECT