Skip to content

Commit dca51ca

Browse files
committed
primitive: Fix missing line-continuation escape
Signed-off-by: 林博仁(Buo-ren Lin) <[email protected]>
1 parent c9f9a1c commit dca51ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Source Code/Shell Script(GNU Bash)(primitive).template.bash

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ for required_command in \
3434

3535
printf -- \
3636
'Error: This program requires "%s" to be installed and its executables in the executable searching paths.\n' \
37-
"${required_software}" 1>&2
37+
"${required_software}" \
38+
1>&2
3839
unset required_software
3940
fi
4041
done; unset required_command required_software

0 commit comments

Comments
 (0)