From 53d9bedb39aba4b3e10e28a1a632ef4317dc4867 Mon Sep 17 00:00:00 2001 From: Stanislav Zhuk Date: Thu, 6 Jun 2024 02:48:33 +0300 Subject: [PATCH] fix: typo in the HTTP port (#35) --- commands/host/xhgui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/host/xhgui b/commands/host/xhgui index bc29b5e..d67787e 100644 --- a/commands/host/xhgui +++ b/commands/host/xhgui @@ -11,5 +11,5 @@ DDEV_XHGUI_HTTPS_PORT=8142 if [ ${DDEV_PRIMARY_URL%://*} = "https" ]; then ddev launch $DDEV_PRIMARY_URL:$DDEV_XHGUI_HTTPS_PORT else - ddev launch $DDEV_PRIMARY_URL::$DDEV_XHGUI_PORT + ddev launch $DDEV_PRIMARY_URL:$DDEV_XHGUI_PORT fi