Skip to content

Commit 15380d7

Browse files
lguerardclaude
andcommitted
fix(apidocs): 🐛 correct blockbuster main branch + allow 0.x
The blockbuster repo uses 'main' (not 'master') and is still pre-1.0, so the '^0\..*$' exclude filter dropped every release and left the version list empty, causing 'grep' to exit non-zero under 'set -o pipefail' and fail the docs build. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 2cdbfcc commit 15380d7

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

settings/apidocs/blockbuster.inc.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ REPO_URI="https://github.com/imcf/${REPO_NAME}.git"
1919
# INCLUDE_TAGS="^(${REPO_NAME}-|v)[0-9]+"
2020

2121
# the name of the main branch, commonly "main" or (old) "master"
22-
MAIN_BRANCH="master"
22+
MAIN_BRANCH="main"
2323

2424
# location of the package source, by default "src/" will be used if emtpy:
2525
# PKG_SRC="src/main/resources" # for mavenized packages
2626

2727
# a 'grep -E' pattern to filter VERSIONS to be EXCLUDED from docs generation:
28-
EXCLUDE_VERSIONS='^0\..*$'
28+
# (blockbuster is still pre-1.0, so do NOT exclude 0.x releases)
29+
# EXCLUDE_VERSIONS='^0\..*$'
2930

3031
# check for 'pdoc: skip' pragmas in the code and disable those lines before
3132
# actually calling pdoc for the versions specified here:

0 commit comments

Comments
 (0)