Update dependencies and install poetry-monorepo-dependency-plugin
This commit is contained in:
parent
d5f647fe4e
commit
f60823a40a
6 changed files with 2125 additions and 70 deletions
|
|
@ -21,4 +21,13 @@ if [[ "$(printf '%s\n' "$1" "$poetry_version" | sort -V | head -n1)" != "$1" ]];
|
|||
echo "Poetry updated successfully."
|
||||
else
|
||||
echo "Poetry version is $1 or higher. No need to update."
|
||||
fi
|
||||
|
||||
# Check if poetry-monorepo-dependency-plugin is installed
|
||||
if poetry self show | grep -q "poetry-monorepo-dependency-plugin"; then
|
||||
echo "poetry-monorepo-dependency-plugin is already installed."
|
||||
else
|
||||
echo "Installing poetry-monorepo-dependency-plugin..."
|
||||
poetry run pip install poetry-monorepo-dependency-plugin
|
||||
echo "poetry-monorepo-dependency-plugin installed successfully."
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue