diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2013-09-12 03:10:11 (JST) |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-01-09 00:46:51 (JST) |
commit | f1fb521a0510cebb4971adf86de39d01cc316df2 (patch) | |
tree | 93afa15ba7f50864be3f693bfd7f9c447f1e3681 /filters | |
parent | 88028ad5970cfb6333f5c9ffd9e05f6fd90fe486 (diff) | |
download | cgit-f1fb521a0510cebb4971adf86de39d01cc316df2.zip cgit-f1fb521a0510cebb4971adf86de39d01cc316df2.tar.gz |
Fix about-formatting.sh
dash failed to parse the script.
Signed-off-by: Přemysl Janouch <p.janouch@gmail.com>
Diffstat (limited to 'filters')
-rwxr-xr-x | filters/about-formatting.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/about-formatting.sh b/filters/about-formatting.sh index 313a4e6..892fbeb 100755 --- a/filters/about-formatting.sh +++ b/filters/about-formatting.sh | |||
@@ -18,7 +18,7 @@ | |||
18 | # CGIT_REPO_CLONE_URL ( = repo.clone-url setting ) | 18 | # CGIT_REPO_CLONE_URL ( = repo.clone-url setting ) |
19 | 19 | ||
20 | cd "$(dirname $0)/html-converters/" | 20 | cd "$(dirname $0)/html-converters/" |
21 | case "$(tr '[:upper:]' '[:lower:]' <<<"$1")" in | 21 | case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in |
22 | *.md|*.mkd) exec ./md2html; ;; | 22 | *.md|*.mkd) exec ./md2html; ;; |
23 | *.rst) exec ./rst2html; ;; | 23 | *.rst) exec ./rst2html; ;; |
24 | *.[1-9]) exec ./man2html; ;; | 24 | *.[1-9]) exec ./man2html; ;; |