From 38a3cef22b8d721a922bb35d1ee588c7937d2d5b Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Sun, 15 Mar 2026 10:42:19 +0100 Subject: [PATCH] makepem: Fix equality operator == is a bash-specific extension, but this script's shebang invokes sh, not bash. --- tools/makepem/makepem | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/makepem/makepem b/tools/makepem/makepem index 47faab89..5e87458a 100755 --- a/tools/makepem/makepem +++ b/tools/makepem/makepem @@ -39,7 +39,7 @@ else openssl x509 -subject -dates -fingerprint -noout -in $1/ircd.pem else FileExist=FALSE - while [ "$FileExist" == "FALSE" ]; + while [ "$FileExist" = "FALSE" ]; do echo Please enter in the filname of the SSL certificate including the full path; read sslpath if test -f $sslpath