From a122b9a8206dd75746145a0db65095f59c858afd Mon Sep 17 00:00:00 2001 From: cedricdcc <30471340+cedricdcc@users.noreply.github.com> Date: Mon, 3 Feb 2025 13:36:41 +0100 Subject: [PATCH] Fix entrypoint.sh to check for docs folder in the correct data directory --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1d3f886..e311f62 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -52,7 +52,7 @@ then #check if there is a ./docs folder in ./github/workspace, if so copy it over to ./src/docs recursively with force overwrite echo "checking if there is a docs folder in ./github/workspace" - if [ -d ./github/workspace/docs ]; + if [ -d ./github/workspace/data/docs ]; then echo "docs folder is present" echo "copying the docs folder over to ./src/data/docs"