mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-01-23 23:07:47 -05:00
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
|