1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-05-17 10:21:47 +08:00
NeoNetwork/scripts/homepage-update.sh
2020-07-26 20:48:05 +08:00

14 lines
179 B
Bash
Executable file

#!/bin/sh
set -xeu
if ! which markdown 2>&1 >/dev/null; then
echo "need markdown"
exit
fi
(
cat docs/header.html
markdown README.md
cat docs/footer.html
) >docs/index.html