From 0bb0883e64f9623bc82df0eb6a03dcd51b699c2b Mon Sep 17 00:00:00 2001 From: Alex van Andel Date: Sat, 21 Jan 2023 06:24:29 +0000 Subject: [PATCH] Fix string equality check in git-setup.sh --- git-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-setup.sh b/git-setup.sh index eb740005df..0d1daac1f5 100755 --- a/git-setup.sh +++ b/git-setup.sh @@ -25,7 +25,7 @@ for module in "$@"; do git reset else # If the module is the API, display a link to request access - if [ "$module" == "api" ]; then + if [ "$module" = "api" ]; then echo "You don't have access to: '${module}' module. You can request access in: https://console.cal.com" else # If the module is not the API, display normal message