Some command line options are not GNU/POSIX compliant (3)
[geeqie.git] / gen_readme.sh
diff --git a/gen_readme.sh b/gen_readme.sh
deleted file mode 100755 (executable)
index a308453..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-# Script to create README.html file,
-
-[ ! -e "README.md" ] && exit 1
-[ ! -x "$(command -v markdown)" ] && exit 1
-
-[ -e README.html ] && mv -f README.html README.html.bak
-
-markdown README.md > README.html
-
-exit 0