We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1d84bb commit 616cecaCopy full SHA for 616ceca
build.sh
@@ -2,7 +2,7 @@
2
3
branch=$(git branch --show-current)
4
branch_main="main"
5
-if [ "$branch" == "2024-lts" ]; then
+if [[ "$branch" == *-lts ]]; then
6
branch_main=$branch
7
fi
8
@@ -34,7 +34,7 @@ echo "" >> src/references/index.md
34
echo " - [README](qwc-base-db_readme.md)" >> src/references/index.md
35
mkdir -p tmp
36
echo "* Downloading schema versions..."
37
+if [ "$branch" == *-lts ]; then
38
wget -q -O tmp/schema-versions.json https://github.com/qwc-services/qwc-config-generator/raw/${branch}/schemas/schema-versions.json
39
else
40
wget -q -O tmp/schema-versions.json https://raw.githubusercontent.com/qwc-services/qwc-config-generator/${branch}/src/schema-versions.json
0 commit comments