*.sh: apply automatically all suggestions from shellcheck

This commit was automatically generated using:
```
$ fd --exclude vendor sh | xargs shellcheck -f diff | git apply
```
This commit is contained in:
Martin Sehnoutka 2020-09-17 15:15:16 +02:00 committed by Ondřej Budai
parent 4c476f32c2
commit b06e6dd916
8 changed files with 146 additions and 146 deletions

View file

@ -141,10 +141,10 @@ else
exit 2
fi
if [ $1 == "start" ]; then
if [ "$1" == "start" ]; then
koji_start
fi
if [ $1 == "stop" ]; then
if [ "$1" == "stop" ]; then
koji_stop
fi