From cc8a2d83ce204c203d25537a60c68ba47135a917 Mon Sep 17 00:00:00 2001 From: vinny Date: Tue, 19 Dec 2023 15:30:24 -0500 Subject: [PATCH] HARMONY-1653: Fix tabbing --- bin/create-dotenv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/create-dotenv b/bin/create-dotenv index e3dad1254..0d4e70bd3 100755 --- a/bin/create-dotenv +++ b/bin/create-dotenv @@ -4,8 +4,8 @@ if [ -f .env ]; then echo "Skipping generating .env file because it already exists." else cat <<-EOF > .env - # Used to identify the client (sent in request headers) - CLIENT_ID=harmony-in-a-box + # Used to identify the client (sent in request headers) + CLIENT_ID=harmony-in-a-box # Random string used to sign cookies. COOKIE_SECRET=$(openssl rand -hex 128)