mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-06 17:36:50 +08:00
14 lines
287 B
Bash
Executable File
14 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# rely on `poetry` in path
|
|
if ! command -v poetry &> /dev/null; then
|
|
echo "Installing Poetry ..."
|
|
pip install poetry
|
|
fi
|
|
|
|
# refreshing lockfile, updating locked versions
|
|
poetry update -C api
|
|
|
|
# check poetry.lock in sync with pyproject.toml
|
|
poetry check -C api --lock
|