view gen_readme.sh @ 2867:52edc8a3990c

Fix #647: rename configure.in to configure.ac https://github.com/BestImageViewer/geeqie/pull/647
author grumpytetra <>
date Fri, 23 Nov 2018 17:11:24 +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