From 8e6f2c579469ff366da7783c20be57976e446eb8 Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Tue, 30 Apr 2024 00:05:47 -0400 Subject: [PATCH] fix: remove upgrade flag from venv generation --- script/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bootstrap.sh b/script/bootstrap.sh index 6990b8d..f5a5b59 100755 --- a/script/bootstrap.sh +++ b/script/bootstrap.sh @@ -2,7 +2,7 @@ VENV=spud.venv -python -m venv --upgrade "$VENV" +python -m venv "$VENV" . "$VENV/bin/activate"