This commit is contained in:
2026-04-02 19:28:02 +08:00
commit 2abccfbb4d
96 changed files with 54269 additions and 0 deletions

13
__test__/verify-clean.sh Normal 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