Files
dify_origin_resource/dify_1.2.0/dev/update-poetry
2025-10-14 14:17:21 +08:00

14 lines
287 B
Bash

#!/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