Deduplicate mark_to_selection and selection_to_mark
[geeqie.git] / gen_readme.sh
diff --git a/gen_readme.sh b/gen_readme.sh
deleted file mode 100755 (executable)
index 5ebf172..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-## @file
-## @brief Convert README.md to README.html
-##
-## Script to create README.html file,
-##
-
-if [ ! -e "README.md" ]
-then
-       echo "ERROR: README.md not found"
-       exit 1
-fi
-
-if [ ! -x "$(command -v pandoc)" ]
-then
-       echo "ERROR: File pandoc not installed"
-       exit 1
-fi
-
-[ -e README.html ] && mv -f README.html README.html.bak
-
-pandoc README.md > README.html
-
-exit 0