Skip to content

Commit 03f6817

Browse files
committed
fix: use read -r to remove \ special meaning
Courtesy of https://www.shellcheck.net/
1 parent a0617d2 commit 03f6817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/Docker/roundup_start

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ for tracker_spec in "$@"; do
2929
# IFS== set a=b doesn't just assign $1 and $2 in busybox ash
3030
# it also clobbers '$@'. 'printf mumble | read' starts read in a
3131
# subshell so vars are not available in parent.
32-
IFS="=" read tracker directory <<- EOE
32+
IFS="=" read -r tracker directory <<- EOE
3333
$tracker_spec
3434
EOE
3535
# ^ is a tab for use with <<-

0 commit comments

Comments
 (0)