This commit is contained in:
Guz
2025-12-25 14:15:57 -03:00
commit 5223f112b1
103 changed files with 54614 additions and 0 deletions

13
__test__/verify-clean.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
if [[ "$(git -C ./basic status --porcelain)" != "" ]]; then
echo ----------------------------------------
echo git status
echo ----------------------------------------
git status
echo ----------------------------------------
echo git diff
echo ----------------------------------------
git diff
exit 1
fi