Skip to content

Commit 8eb1228

Browse files
committed
Quick-fix: use same pinned version of MAINTAINERS.md for all 3.x specs
1 parent 64111cc commit 8eb1228

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/md2html/build.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ mkdir -p deploy/js
1010

1111
cd scripts/md2html
1212
mkdir -p history
13-
git show c740e950d:MAINTAINERS.md > history/MAINTAINERS_v2.0.md
13+
git show c740e95:MAINTAINERS.md > history/MAINTAINERS_v2.0.md
14+
git show e9fe5bc:MAINTAINERS.md > history/MAINTAINERS_v3.x.md
1415
cp -p js/* ../../deploy/js 2> /dev/null
1516
cp -p markdown/* ../../deploy/ 2> /dev/null
1617

@@ -20,7 +21,7 @@ latest=`git describe --abbrev=0 --tags`
2021
latestCopied=none
2122
for filename in ../../versions/[3456789].*.md ; do
2223
version=$(basename "$filename" .md)
23-
node md2html.js --respec --maintainers ../../MAINTAINERS.md ${filename} > ../../deploy/oas/v$version.html
24+
node md2html.js --respec --maintainers ./history/MAINTAINERS_v3.x.md ${filename} > ../../deploy/oas/v$version.html
2425
if [ $version = $latest ]; then
2526
if [[ ${version} != *"rc"* ]];then
2627
# version is not a Release Candidate

0 commit comments

Comments
 (0)