mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-04-21 15:39:36 -04:00
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: aarnphm-ec2-dev <29749331+aarnphm@users.noreply.github.com>
10 lines
166 B
Bash
Executable File
10 lines
166 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! git diff --quiet README.md; then
|
|
cp README.md openllm-python/README.md
|
|
exit 1
|
|
else
|
|
echo "README.md is up to date"
|
|
exit 0
|
|
fi
|