Skip to content

Commit 5d93125

Browse files
committed
fix(common-utils): 🐛 correct argument value formatting in _zz_args.sh
1 parent d6d655e commit 5d93125

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/common-utils/_zz_args.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ else
118118
# Process remaining '+' parameters
119119
for arg in $(echo $varnames | grep -E "^\+" | cut -f2); do
120120
if [ "$#" -gt "0" ]; then
121-
echo "$arg='$(echo $@ | sed "s/ /\\\\ /g")'" && shift $#
121+
echo "$arg='$(echo $@ | sed "s/ /\t/g")'" && shift $#
122122
fi
123123
done
124124

0 commit comments

Comments
 (0)