aboutsummaryrefslogtreecommitdiff
path: root/regress/lib.sh
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2022-01-30 13:31:29 +0000
committerOmar Polo <op@omarpolo.com>2022-01-30 13:31:29 +0000
commit5266f50060b37bc59e20bc06771a9888939ec7be (patch)
tree5e1478a1d1d84eeea1e777cdd260035cd6bd09d5 /regress/lib.sh
parent7ac42a178b4529832ca1b5a34d82b0a5ac999560 (diff)
posixify lib.sh: use = instead of == for test(1)
Diffstat (limited to 'regress/lib.sh')
-rw-r--r--regress/lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/lib.sh b/regress/lib.sh
index 3a4e8f4..fb6d046 100644
--- a/regress/lib.sh
+++ b/regress/lib.sh
@@ -161,7 +161,7 @@ check() {
fi
pid="$(cat gmid.pid || true)"
- if [ "$pid" == "" ]; then
+ if [ "$pid" = "" ]; then
return 1
fi