From 4fbff76ec099b7308c6afd4894788703af9d12cb Mon Sep 17 00:00:00 2001 From: Olav Vitters Date: Sat, 25 Jul 2020 14:48:01 +0200 Subject: add-webapp: ShellCheck: fix quoting issue --- add-webapp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/add-webapp b/add-webapp index 6468280..5d00635 100755 --- a/add-webapp +++ b/add-webapp @@ -8,7 +8,7 @@ fi pkg=$1 # name of the package num=$2 # number of packages installed -if [ $num = 1 ]; then +if [ "$num" = 1 ]; then # installation: restart web server if running, # as there is a new configuration file /sbin/service httpd condrestart -- cgit v1.2.1