Add seed flag when running setup with uv present (#9932)

This commit is contained in:
cryptk 2025-07-27 21:20:51 -05:00 committed by GitHub
parent a2ed209542
commit 20b61d4bdb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ set -e
cd "$(dirname "$0")/.."
if [ ! -n "$VIRTUAL_ENV" ]; then
if [ -x "$(command -v uv)" ]; then
uv venv venv
uv venv --seed venv
else
python3 -m venv venv
fi