Skip to content
Snippets Groups Projects
Commit bf485778 authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+ fixes for prepare and CI scripts

parent e56fde7c
No related branches found
No related tags found
1 merge request!3* merge dev with latest fixes
Pipeline #4061 passed
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment