You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In intelmq-tutorial/ansible/files/reset-intelmq.sh line 5:
[ "root" != "$USER" ] && exec sudo $0 "$@"
^-- SC2086: Double quote to prevent globbing and word splitting.
Did you mean:
[ "root" != "$USER" ] && exec sudo "$0" "$@"
In intelmq-tutorial/ansible/files/tutorial-to-html.sh line 5:
[ "user" != "$USER" ] && exec sudo -u user $0 "$@"
^-- SC2086: Double quote to prevent globbing and word splitting.
Did you mean:
[ "user" != "$USER" ] && exec sudo -u user "$0" "$@"
In intelmq-tutorial/ansible/files/tutorial-to-html.sh line 9:
sudo chown $USER $DIR
^---^ SC2086: Double quote to prevent globbing and word splitting.
Did you mean:
sudo chown "$USER" $DIR
In intelmq-tutorial/ansible/files/tutorial-update.sh line 5:
[ "user" != "$USER" ] && exec sudo -u user $0 "$@"
^-- SC2086: Double quote to prevent globbing and word splitting.
Did you mean:
[ "user" != "$USER" ] && exec sudo -u user "$0" "$@"
For more information:
https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...
The text was updated successfully, but these errors were encountered:
shellcheck result:
The text was updated successfully, but these errors were encountered: