Skip to content

Commit 3ff3380

Browse files
committed
fix(common-utils): 🐛 update argument parsing in dispatch utility
1 parent 864aa72 commit 3ff3380

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/common-utils/_zz_dispatch.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -e
88

99
# Parse arguments and display help if needed
1010
eval $(
11-
./src/common-utils/_zz_args.sh "Dispatch Utility" $0 "$@" <<- help
11+
zz_args "Dispatch Utility" $0 "$@" <<- help
1212
- caller caller Caller script path
1313
- subcmd subcmd Target script to execute
1414
d debug debug Enable debug mode
@@ -27,7 +27,7 @@ usage() {
2727

2828
preserve() {
2929
echo $@ | while read -r line; do
30-
echo \"$line\"
30+
echo $line
3131
done
3232
}
3333

0 commit comments

Comments
 (0)