view gen_readme.sh @ 2913:a1ed644315cb

Bug fix: Update documentation, remove obsolete GQview import options Remove reference to plugins/import folder
author Colin Clark <colin.clark@cclark.uk>
date Sun, 31 Mar 2019 11:28:34 +0100
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