mirror of
https://github.com/langgenius/dify-docs-archived.git
synced 2026-07-15 12:45:41 -04:00
c4b7cef2af
* i18n: translate scripts * i18n: translate scripts
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 |