From 40d1f337f3bb5e6447afd2638b21a4e79ff6b588 Mon Sep 17 00:00:00 2001 From: Paige Williams Date: Tue, 23 Jun 2026 10:34:21 -0700 Subject: [PATCH] use main branch in install-docker-env.sh --- scripts/Linux/install-docker-env.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/Linux/install-docker-env.sh b/scripts/Linux/install-docker-env.sh index 337d70ca..990bcb18 100644 --- a/scripts/Linux/install-docker-env.sh +++ b/scripts/Linux/install-docker-env.sh @@ -57,11 +57,10 @@ mkdir tekdb cd tekdb git clone https://github.com/Ecotrust/TEKDB.git -# TODO: change to the main branch once the develop branch is merged into main!! -echo "Checking out the develop branch..." +echo "Checking out the main branch..." cd TEKDB -git checkout develop -git pull origin develop +git checkout main +git pull origin main echo "Moving the .env.prod file to the Docker directory..." mv $ENV_FILE docker/.env.prod