From cef79c93754cb3af1afff531e624415b3253f40a Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Fri, 24 Jan 2025 10:43:55 +0100 Subject: [PATCH] exclude dev group from being synced automatically --- launch.cmd | 4 ++-- launch.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/launch.cmd b/launch.cmd index 0404112..474de48 100644 --- a/launch.cmd +++ b/launch.cmd @@ -5,7 +5,7 @@ if exist .venv ( call .venv\Scripts\activate.bat ) else ( REM Run uv sync if .venv does not exist - uv sync + uv sync --no-dev call .venv\Scripts\activate.bat ) @@ -14,7 +14,7 @@ git pull REM Run uv sync if .venv exists (already activated) if exist .venv ( - uv sync + uv sync --no-dev ) REM Start main.py diff --git a/launch.ps1 b/launch.ps1 index ead4a15..4efb68e 100644 --- a/launch.ps1 +++ b/launch.ps1 @@ -4,7 +4,7 @@ if (Test-Path .venv) { .\.venv\Scripts\Activate.ps1 } else { # Run uv sync if .venv does not exist - uv sync + uv sync --no-dev .\.venv\Scripts\Activate.ps1 } @@ -13,7 +13,7 @@ git pull # Run uv sync if .venv exists (already activated) if (Test-Path .venv) { - uv sync + uv sync --no-dev } # Start main.py