We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b187b6 commit b9c7b91Copy full SHA for b9c7b91
scripts/md2html/build-src.sh
@@ -4,15 +4,15 @@
4
5
# run this script from the root of the repo
6
7
-mkdir -p deploy-preview
+mkdir -p deploy-preview/temp
8
mkdir -p deploy-preview/js
9
10
cp -p node_modules/respec/builds/respec-w3c.* deploy-preview/js/
11
12
cd scripts/md2html
13
14
filename=src/oas.md
15
-tempfile=../../deploy-preview/oas-temp.html
+tempfile=../../deploy-preview/temp/oas.html
16
echo "=== ${filename} ==="
17
18
node md2html.js --maintainers ../../EDITORS.md ../../${filename} > $tempfile
@@ -22,4 +22,5 @@ rm $tempfile
22
echo Built deploy-preview/oas.html
23
echo
24
25
-rm ../../deploy-preview/js/respec-w3c.*
+rm -r ../../deploy-preview/js
26
+rmdir ../../deploy-preview/temp
0 commit comments