view gen_readme.sh @ 2882:0149f1ddb297

Fix #656: make install fails on POTFILES.in (random-image plugin) https://github.com/BestImageViewer/geeqie/issues/656
author Andreas Rönnquist <>
date Sun, 06 Jan 2019 17:17:20 +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