github.com/influxdata/telegraf@v1.30.3/scripts/make_docs.sh (about)

     1  #!/bin/sh
     2  
     3  make docs
     4  
     5  if [ "$(git status --porcelain | wc -l)" -eq "0" ]; then
     6    echo "🟢 Git repo is clean."
     7  else
     8    echo "🔴 Git repo dirty. Please run \"make docs\" and push the updated README. Failing CI."
     9    exit 1
    10  fi