mirror of
https://git.zx2c4.com/cgit
synced 2025-08-14 06:38:50 +02:00
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:
parent
88028ad597
commit
f1fb521a05
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@
|
||||||
# CGIT_REPO_CLONE_URL ( = repo.clone-url setting )
|
# CGIT_REPO_CLONE_URL ( = repo.clone-url setting )
|
||||||
|
|
||||||
cd "$(dirname $0)/html-converters/"
|
cd "$(dirname $0)/html-converters/"
|
||||||
case "$(tr '[:upper:]' '[:lower:]' <<<"$1")" in
|
case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in
|
||||||
*.md|*.mkd) exec ./md2html; ;;
|
*.md|*.mkd) exec ./md2html; ;;
|
||||||
*.rst) exec ./rst2html; ;;
|
*.rst) exec ./rst2html; ;;
|
||||||
*.[1-9]) exec ./man2html; ;;
|
*.[1-9]) exec ./man2html; ;;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue