[community/master] without this escaping, the build breaks

commit bacc42dd625a27196cd49b4f7db6b699d2e27632 Author: emma peel <emma.peel@riseup.net> Date: Thu Aug 8 23:15:17 2019 +0200 without this escaping, the build breaks --- .../relay-operations/technical-setup/bridge/docker/contents.lr | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/relay-operations/technical-setup/bridge/docker/contents.lr b/content/relay-operations/technical-setup/bridge/docker/contents.lr index b68770c..9ff4a6e 100644 --- a/content/relay-operations/technical-setup/bridge/docker/contents.lr +++ b/content/relay-operations/technical-setup/bridge/docker/contents.lr @@ -18,10 +18,10 @@ Now, it's time to run the container. You have two options: 2. If you would rather provide your own ports, run the following command and replace `XXX` with your OR port, `YYY` with your obfs4 port, and `address@example.com` with your email address. Don't forget the semicolon after the environment variables. ``` - OR_PORT=XXX PT_PORT=YYY EMAIL=address@example.com; \ - docker run -d \ - -e "OR_PORT=$OR_PORT" -e "PT_PORT=$PT_PORT" -e "EMAIL=$EMAIL" \ - -p "$OR_PORT":"$OR_PORT" -p "$PT_PORT":"$PT_PORT" \ + OR_PORT=XXX PT_PORT=YYY EMAIL=address@example.com; \\ + docker run -d \\ + -e "OR_PORT=$OR_PORT" -e "PT_PORT=$PT_PORT" -e "EMAIL=$EMAIL" \\ + -p "$OR_PORT":"$OR_PORT" -p "$PT_PORT":"$PT_PORT" \\ phwinter/obfs4-bridge:0.1 ```
participants (1)
-
emmapeel@torproject.org