From 9f0658dd77ab619feac4b06af6f5ba8a65c329e1 Mon Sep 17 00:00:00 2001 From: HannesOberreiter Date: Thu, 2 Nov 2023 11:32:18 +0100 Subject: [PATCH] sample: escape/encapsulate string Currently if you use the default `source` command in linux and the default `.env` file as declared in the `env.example`, it will fail because of the space in the string. Using double-quotes around the string will solve this issue. --- env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.example b/env.example index 1e328f87f1..d2a1f7ba43 100644 --- a/env.example +++ b/env.example @@ -74,7 +74,7 @@ TZ=UTC #ETHERPAD_PUBLIC_URL=https://etherpad.my.domain/p/ # Name your etherpad instance! -ETHERPAD_TITLE=Video Chat +ETHERPAD_TITLE="Video Chat" # The default text of a pad ETHERPAD_DEFAULT_PAD_TEXT="Welcome to Web Chat!\n\n"