scorecard/scripts/tree-status
Abhishek Arya a44dd6a758
Add pypi and ruby gems package support. (#226)
Adds some more package managers to
https://github.com/ossf/scorecard/issues/33

Co-authored-by: Naveen <172697+naveensrinivasan@users.noreply.github.com>
2021-03-01 11:21:20 -05:00

13 lines
222 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
STATUS=$(git status --porcelain)
if [[ -z $STATUS ]]; then
echo tree is clean
else
echo tree is dirty, please commit all changes
echo "$STATUS"
git diff
exit 1
fi