From 5449b4872ff3932ae06bef38f80d5c026cb08644 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Sat, 1 Mar 2025 10:16:13 -0500 Subject: [PATCH] fix deploys modified: .gitlab-ci.yml modified: Makefile --- .gitlab-ci.yml | 3 --- Makefile | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 38487d5..f786133 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,9 +19,6 @@ build: - ls -hal - mv env.vanilla env - make prod - # Install the two themes separately - - env/bin/pip install git+https://git.unturf.com/engineering/remarkbox/remarkbox-theme-meta.git - - env/bin/pip install git+https://git.unturf.com/engineering/remarkbox/remarkbox-westworld.git # Copy static assets to env/static - cp -pr remarkbox/static env/static # Copy static assets to env/static for westworld theme. diff --git a/Makefile b/Makefile index 29e6c53..65ff021 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,8 @@ env: . env/bin/activate env/bin/pip install --upgrade pip env/bin/pip install --upgrade -r requirements.py3.txt + env/bin/pip install git+https://git.unturf.com/engineering/remarkbox/remarkbox-theme-meta.git + env/bin/pip install git+https://git.unturf.com/engineering/remarkbox/remarkbox-westworld.git cp -rp env env.vanilla dev: env