view gen_readme.sh @ 2908:ea58314bd19d

Bug fix: Search page - calls to g_regex_unref) Eliminate run-time errors caused by unwanted calls to g_regex_unref()
author Colin Clark <colin.clark@cclark.uk>
date Wed, 13 Feb 2019 11:47:38 +0000
parents e083bab50112
children
line wrap: on
line source

#!/bin/bash

# Script to create README.html file,

[ ! -e "README.md" ] && exit 1
[ ! -x "$(command -v markdown)" ] && exit 0

[ -e README.html ] && mv -f README.html README.html.bak

markdown README.md > README.html

exit 0