diff options
author | EuAndreh <eu@euandre.org> | 2021-06-23 22:21:43 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-23 22:21:43 -0300 |
commit | a6d680283a52ccc0119bfc5790c10ade73279308 (patch) | |
tree | e6e80879d2aad16285ff0f52df9f5f87a7a0b497 /aux | |
parent | README.md, aux/workflow/assert-readme.sh: Link to commit in the releases sect... (diff) | |
download | git-permalink-a6d680283a52ccc0119bfc5790c10ade73279308.tar.gz git-permalink-a6d680283a52ccc0119bfc5790c10ade73279308.tar.xz |
aux/workflow/manpages.sh: Add missing suffix to HTML files
Diffstat (limited to 'aux')
-rwxr-xr-x | aux/workflow/manpages.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aux/workflow/manpages.sh b/aux/workflow/manpages.sh index 00a53d9..fe215f7 100755 --- a/aux/workflow/manpages.sh +++ b/aux/workflow/manpages.sh @@ -40,7 +40,7 @@ for f in "$@"; do case "$ACTION" in html) assert "${OUTDIR:-}" OUTDIR - to_name="$(basename "${f%.$l.$n}.html")" + to_name="$(basename "${f%.$l.$n}.$n.html")" mkdir -p "$OUTDIR/$l" pandoc -s -r man -w html --metadata "lang=$l" < "$f" > "$OUTDIR/$l/$to_name" ;; |