From 0ebb970fe62455b448fc432a882ecf1a5ff944fd Mon Sep 17 00:00:00 2001 From: Adam J Hall <46713492+H4LL@users.noreply.github.com> Date: Wed, 25 Sep 2024 12:43:42 +0700 Subject: [PATCH] Fixed double hyphen on docker set up script Currently the convenience script for mac is failing because in the docs it says to use a double hyphen before email and password but it was expecting a single hyphen in the file. I've updated the script so that both precedents work. --- scripts/docker-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/docker-setup.sh b/scripts/docker-setup.sh index edfcb0c5016..d0cdc9c48f4 100755 --- a/scripts/docker-setup.sh +++ b/scripts/docker-setup.sh @@ -58,11 +58,11 @@ while [[ "$#" -gt 0 ]]; do PORT="$2" shift 2 ;; - -email|--root-email) + -email|--email|--root-email) DEFAULT_ROOT_EMAIL="$2" shift 2 ;; - -password|--root-password) + -password|--password|--root-password) DEFAULT_ROOT_PASSWORD="$2" shift 2 ;;