Files
github-actions[bot] 3d64c1dad5 sunnypilot v2026.003.000
version: sunnypilot v2026.003.000 (staging)
date: 2026-08-06T16:02:06
master commit: 099143ad9d
2026-08-06 16:02:06 +00:00

20 lines
434 B
Bash
Executable File

#!/usr/bin/env bash
set -e
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
cd $DIR
if ! command -v uv &>/dev/null; then
echo "'uv' is not installed. Installing 'uv'..."
curl -LsSf https://astral.sh/uv/install.sh | sh
# doesn't require sourcing on all platforms
set +e
source $HOME/.local/bin/env
set -e
fi
export UV_PROJECT_ENVIRONMENT="$DIR/.venv"
uv sync --all-extras
source "$DIR/.venv/bin/activate"