mirror of
https://github.com/langgenius/dify-docs-archived.git
synced 2026-07-19 14:33:40 -04:00
11 lines
237 B
Bash
Executable File
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 |