Comment out build script

This commit is contained in:
Dave Machado 2017-05-25 10:15:57 -04:00
parent 6747d5b250
commit 141dfcf931

4
build/build.sh Normal file → Executable file
View file

@ -1,6 +1,10 @@
#!/bin/bash #!/bin/bash
# create json directory if not already present
mkdir -p ../json mkdir -p ../json
# parse API README and print (minified) JSON to stdout, redirect to /json
node md2json.js ../README.md > ../json/api.min.json node md2json.js ../README.md > ../json/api.min.json
# beautify the previously created JSON file, redirect to /json
python -m json.tool ../json/api.min.json > ../json/api.json python -m json.tool ../json/api.min.json > ../json/api.json
# print out pretty JSON (useful for debugging, checking for new entries, etc)
cat ../json/api.json cat ../json/api.json