From 283ee0ba0a1540a9e8e8d68625d89315a5356162 Mon Sep 17 00:00:00 2001 From: rl1987 Date: Wed, 27 Mar 2019 19:27:57 +0200 Subject: Fix SC2086 warnings in asciidoc-helper.sh --- doc/asciidoc-helper.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/asciidoc-helper.sh') diff --git a/doc/asciidoc-helper.sh b/doc/asciidoc-helper.sh index a3ef53f884..765850a125 100755 --- a/doc/asciidoc-helper.sh +++ b/doc/asciidoc-helper.sh @@ -19,7 +19,7 @@ if [ "$1" = "html" ]; then base=${output%%.html.in} if [ "$2" != none ]; then - TZ=UTC "$2" -d manpage -o $output $input; + TZ=UTC "$2" -d manpage -o "$output" "$input"; else echo "=================================="; echo; @@ -44,8 +44,8 @@ elif [ "$1" = "man" ]; then echo "=================================="; exit 1; fi - if "$2" -f manpage $input; then - mv $base.1 $output; + if "$2" -f manpage "$input"; then + mv "$base.1" "$output"; else cat<