Fix string equality check in git-setup.sh
parent
d3be62fbdd
commit
0bb0883e64
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue