Skip to content

Commit 0621961

Browse files
Merge pull request #8402 from rwsu/AGENT-863-fix-shellcheck
AGENT-863: Change $@ to "$*" to fix shellcheck
2 parents 412a878 + f9169c1 commit 0621961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/user/agent/add-node/node-joiner-monitor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ $# -eq 0 ]; then
77
exit 1
88
fi
99

10-
ipAddresses=$@
10+
ipAddresses="$*"
1111

1212
# Setup a cleanup function to ensure to remove the temporary
1313
# file when the script will be completed.

0 commit comments

Comments
 (0)