remove verify-no-unstaged-changes.sh

This commit is contained in:
Brian Cristante 2021-09-10 10:36:43 -04:00
parent 6042c76101
commit 8cd4289141
2 changed files with 1 additions and 21 deletions

View file

@ -1,17 +0,0 @@
#!/bin/bash
if [[ "$(git status --porcelain)" != "" ]]; then
echo ----------------------------------------
echo git status
echo ----------------------------------------
git status
echo ----------------------------------------
echo git diff
echo ----------------------------------------
git diff
echo ----------------------------------------
echo Troubleshooting
echo ----------------------------------------
echo "::error::Unstaged changes detected. Locally try running: git clean -ffdx && npm ci && npm run pre-checkin"
exit 1
fi