Skip to content

Commit ee98da5

Browse files
committed
Remove unnecessary newline.
1 parent a23b63e commit ee98da5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/lib/bashy-core/arg-processor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ function _argproc_handler-body {
734734
if [[ ${callFunc} =~ ^\{(.*)\}$ ]]; then
735735
# Add a compound statement for the code block.
736736
result+=(
737-
"$(printf '{\n%s\n} || return "$?"\n' "${BASH_REMATCH[1]}")"
737+
"$(printf '{\n%s\n} || return "$?"' "${BASH_REMATCH[1]}")"
738738
)
739739
elif [[ ${callFunc} != '' ]]; then
740740
result+=(

0 commit comments

Comments
 (0)