#!/usr/bin/env bash
# [MISE] hide=true

set -o errexit
set -o pipefail

if [[ -e poetry.lock ]]; then
  poetry install --all-groups
elif [[ -e uv.lock ]]; then
  uv sync --all-groups
fi
