Files
2025-04-14 17:46:30 +08:00

11 lines
237 B
Bash
Executable File

#!/bin/bash
# Execute the language check script
if bash ./lang-check/git-diff.sh; then
# Check passed, submission executed
git commit -m "$*"
else
# Check failed
echo "Language check failed, commit aborted"
exit 1
fi