From 7615cd0a3f2604531a6bb6e24d3268afd5f7e9c1 Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Kandula Date: Thu, 28 Nov 2024 06:58:36 +0530 Subject: [PATCH] chore: Fix start-https when backend isn't set --- app/client/start-https.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/start-https.sh b/app/client/start-https.sh index 82762756db..50633878cd 100755 --- a/app/client/start-https.sh +++ b/app/client/start-https.sh @@ -86,7 +86,7 @@ if [[ ${backend-} == release ]]; then backend=https://release.app.appsmith.com fi -if [[ $backend == https://release.app.appsmith.com ]]; then +if [[ ${backend-} == https://release.app.appsmith.com ]]; then # If running client against release, we get the release's version and set it up, so we don't see version mismatches. APPSMITH_VERSION_ID="$( curl -sS "$backend/info" | grep -Eo '"version": ".+?"' | cut -d\" -f4