view gen_readme.sh @ 2914:ea342d5f9d14

Fix #663: Use grammatically correct month names in pan view https://github.com/BestImageViewer/geeqie/issues/663
author Tomasz Goliński <tomaszg@math.uwb.edu.pl>
date Mon, 01 Apr 2019 11:56:36 +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