From 2cfbb394a8872bd5705a32859d05cfe43dcaeef7 Mon Sep 17 00:00:00 2001 From: Darshaka Pathirana Date: Fri, 5 Mar 2021 17:44:24 +0100 Subject: [PATCH] usr_sbin/noeject: Fix a couple of shellcheck warnings - SC2048: Use "$@" (with quotes) to prevent whitespace problems. - SC2086: Double quote to prevent globbing and word splitting. --- usr_sbin/noeject | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr_sbin/noeject b/usr_sbin/noeject index 972e331..e45e4be 100755 --- a/usr_sbin/noeject +++ b/usr_sbin/noeject @@ -7,6 +7,6 @@ ################################################################################ touch /etc/noeject -exec $* +exec "$@" ## END OF FILE ################################################################# -- 2.1.4