Files
voideditor--void/.github/workflows/check-clean-git-state.sh
T
Andrew Pareles 3b901ad60f init
2025-02-28 18:01:53 -08:00

7 lines
222 B
Bash
Executable File

R=`git status --porcelain | wc -l`
if [ "$R" -ne "0" ]; then
echo "The git repo is not clean after compiling the /build/ folder. Did you forget to commit .js output for .ts files?";
git status --porcelain
exit 1;
fi