Commit Diff
Commit:
5266f50060b37bc59e20bc06771a9888939ec7be
Date:
Sun Jan 30 13:31:29 2022
UTC
Message
posixify lib.sh: use = instead of == for test(1)
--- regress/lib.sh
+++ regress/lib.sh
@@ -161,7 +161,7 @@ check() {
fi
pid="$(cat gmid.pid || true)"
- if [ "$pid" == "" ]; then
+ if [ "$pid" = "" ]; then
return 1
fi
Omar Polo