posixify lib.sh: use = instead of == for test(1)

This commit is contained in:
Omar Polo 2022-01-30 13:31:29 +00:00
parent 7ac42a178b
commit 5266f50060
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ check() {
fi
pid="$(cat gmid.pid || true)"
if [ "$pid" == "" ]; then
if [ "$pid" = "" ]; then
return 1
fi