diff options
author | Olav Vitters <olav@vitters.nl> | 2020-07-25 14:48:01 +0200 |
---|---|---|
committer | Olav Vitters <olav@vitters.nl> | 2020-07-25 14:48:01 +0200 |
commit | 4fbff76ec099b7308c6afd4894788703af9d12cb (patch) | |
tree | 173454caf22c7c6c3e5938739bf0994d8a09011c | |
parent | 11633f7c15556a40017e33aeb6f73774d4fb9dfb (diff) | |
download | rpm-helper-4fbff76ec099b7308c6afd4894788703af9d12cb.tar rpm-helper-4fbff76ec099b7308c6afd4894788703af9d12cb.tar.gz rpm-helper-4fbff76ec099b7308c6afd4894788703af9d12cb.tar.bz2 rpm-helper-4fbff76ec099b7308c6afd4894788703af9d12cb.tar.xz rpm-helper-4fbff76ec099b7308c6afd4894788703af9d12cb.zip |
add-webapp: ShellCheck: fix quoting issue
-rwxr-xr-x | add-webapp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |