Use concatenate of arguments instead of using the array directly

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2024-06-22 20:49:44 +02:00
parent b835fa06a6
commit fe8e63853c
No known key found for this signature in database
GPG key ID: 00135ACBD90B28DD

2
pihole
View file

@ -572,7 +572,7 @@ fi
# requires root. If so, exit with an error message.
if [[ $EUID -ne 0 && ${USER} != "pihole" && need_root -eq 1 ]];then
echo -e " ${CROSS} The Pi-hole command requires root privileges, try:"
echo -e " ${COL_GREEN}sudo pihole ${@}${COL_NC}"
echo -e " ${COL_GREEN}sudo pihole $*${COL_NC}"
exit 1
fi