From 58c4206b92739ae48a5d19f39b0f8f51f420aa85 Mon Sep 17 00:00:00 2001 From: David Young Date: Tue, 23 Aug 2022 13:33:55 +1200 Subject: [PATCH] Try to fix build issues Signed-off-by: David Young --- scripts/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build.sh b/scripts/build.sh index 6cb2e92..2475df6 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -10,11 +10,11 @@ # install mkdocs (or insiders version, if we're passed a GH_TOKEN var) if [ -z "$GH_TOKEN" ] then + echo "No GH_TOKEN passed, doing a normal build.." pip install mkdocs-material ENABLE_PDF_EXPORT=0 mkdocs build -f mkdocs.yml else - # Bypass search issue described at https://github.com/squidfunk/mkdocs-material/issues/3053 - # git clone --depth 1 https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git + echo "GH_TOKEN passed, doing an insiders build.." pip install -e mkdocs-material-insiders ENABLE_PDF_EXPORT=0 mkdocs build -f mkdocs-insiders.yml fi