Skip to content

Commit

Permalink
sample: escape/encapsulate string
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
HannesOberreiter authored Nov 2, 2023
1 parent 5d05ba2 commit 9f0658d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion env.example
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 9f0658d

Please sign in to comment.