all repos — cgit @ f1fb521a0510cebb4971adf86de39d01cc316df2

a hyperfast web frontend for git written in c

Fix about-formatting.sh

dash failed to parse the script.

Signed-off-by: Přemysl Janouch <p.janouch@gmail.com>
Přemysl Janouch p.janouch@gmail.com
Wed, 11 Sep 2013 20:10:11 +0200
commit

f1fb521a0510cebb4971adf86de39d01cc316df2

parent

88028ad5970cfb6333f5c9ffd9e05f6fd90fe486

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M filters/about-formatting.shfilters/about-formatting.sh

@@ -18,7 +18,7 @@ # CGIT_REPO_SECTION ( = section setting )

# CGIT_REPO_CLONE_URL ( = repo.clone-url setting ) cd "$(dirname $0)/html-converters/" -case "$(tr '[:upper:]' '[:lower:]' <<<"$1")" in +case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in *.md|*.mkd) exec ./md2html; ;; *.rst) exec ./rst2html; ;; *.[1-9]) exec ./man2html; ;;