Fix about-formatting.sh

dash failed to parse the script.

Signed-off-by: Přemysl Janouch <p.janouch@gmail.com>
This commit is contained in:
Přemysl Janouch 2013-09-11 20:10:11 +02:00 提交者 Jason A. Donenfeld
父節點 88028ad597
當前提交 f1fb521a05
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

@ -18,7 +18,7 @@
# 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; ;;