File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -11,17 +11,22 @@ mkdir -p deploy/js
11
11
cd scripts/md2html
12
12
mkdir -p history
13
13
git show c740e95:MAINTAINERS.md > history/MAINTAINERS_v2.0.md
14
- git show e9fe5bc:MAINTAINERS.md > history/MAINTAINERS_v3.x.md
14
+ git show e9fe5bc:MAINTAINERS.md > history/MAINTAINERS_v3.0.0.md
15
+ cp history/MAINTAINERS_v3.0.0.md history/MAINTAINERS_v3.0.1.md
16
+ git show 3140640:MAINTAINERS.md > history/MAINTAINERS_v3.0.2.md
17
+ cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.0.3.md
18
+ cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.0.3.md
19
+ cp history/MAINTAINERS_v3.0.2.md history/MAINTAINERS_v3.1.0.md
20
+ # add lines for 3.0.4, 3.1.1, ...
21
+
15
22
cp -p js/* ../../deploy/js 2> /dev/null
16
23
cp -p markdown/* ../../deploy/ 2> /dev/null
17
24
18
- node md2html.js --respec --maintainers ./history/MAINTAINERS_v2.0.md ../../versions/2.0.md > ../../deploy/oas/v2.0.html
19
-
20
25
latest=` git describe --abbrev=0 --tags`
21
26
latestCopied=none
22
- for filename in ../../versions/[3456789 ].* .md ; do
27
+ for filename in ../../versions/[23456789 ].* .md ; do
23
28
version=$( basename " $filename " .md)
24
- node md2html.js --respec --maintainers ./history/MAINTAINERS_v3.x .md ${filename} > ../../deploy/oas/v$version .html
29
+ node md2html.js --respec --maintainers ./history/MAINTAINERS_v $version .md ${filename} > ../../deploy/oas/v$version .html
25
30
if [ $version = $latest ]; then
26
31
if [[ ${version} != * " rc" * ]]; then
27
32
# version is not a Release Candidate
You can’t perform that action at this time.
0 commit comments