mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-01-19 12:58:00 -05:00
15 lines
268 B
Bash
Executable File
15 lines
268 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail
|
|
|
|
GIT_ROOT="$(git rev-parse --show-toplevel)"
|
|
cd "$GIT_ROOT" || exit 1
|
|
|
|
mirror() {
|
|
cp $1 $2
|
|
}
|
|
|
|
mirror README.md openllm-python/README.md
|
|
mirror LICENSE.md openllm-python/LICENSE.md
|
|
mirror CHANGELOG.md openllm-python/CHANGELOG.md
|