From 13f7cc4a09fb604f8a722f1218e2aea95a564ce1 Mon Sep 17 00:00:00 2001 From: Michael Lee Date: Sun, 15 Dec 2024 15:25:50 -0500 Subject: [PATCH] make build and setup consistent --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 82ca2da..f2f68f9 100755 --- a/build.sh +++ b/build.sh @@ -2,7 +2,7 @@ cd `dirname $0` # Create a virtual environment to run our code -VENV_NAME="venv" +VENV_NAME=".venv" PYTHON="$VENV_NAME/bin/python" if ! $PYTHON -m pip install pyinstaller -Uqq; then