From bf485778e8307b1e06070aed81c7a47d6c9dff48 Mon Sep 17 00:00:00 2001 From: Philip Makedonski Date: Wed, 10 Jan 2024 21:36:43 +0100 Subject: [PATCH] + fixes for prepare and CI scripts --- prepare.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prepare.sh b/prepare.sh index 44864c7..f093b33 100755 --- a/prepare.sh +++ b/prepare.sh @@ -37,8 +37,8 @@ process_contents() { mkdir -p `dirname "$line"` # get file curl "$BASE_URL/$channel/$line" -o "$channel/$line" - # update contents done < "$file" + # update contents update_contents $channel mkdir -p $RELEASE_BASE_PATH/$channel cp -r -f $channel/* $RELEASE_BASE_PATH/$channel @@ -49,7 +49,7 @@ update_contents "$SITE_PATH" # process opposite channel if [ "$TARGET_CHANNEL" == "beta" ]; then - process_contents "main" + process_contents "stable" else process_contents "beta" fi -- GitLab