diff options
author | Dan Callahan <danc@element.io> | 2021-10-21 23:47:20 +0100 |
---|---|---|
committer | Dan Callahan <danc@element.io> | 2021-10-22 23:08:54 +0100 |
commit | 7cf83c0acaaecd53c7cedda73fbff4704b256eac (patch) | |
tree | 3940658c2a60ffbb6bb3208bb32bf26e6a8156fa | |
parent | Fix Shellcheck SC2089 and SC2090: Quotes in vars (diff) | |
download | synapse-7cf83c0acaaecd53c7cedda73fbff4704b256eac.tar.xz |
Fix Shellcheck SC1001: Meaningless char escapes
This \o will be a regular 'o' in this context. https://github.com/koalaman/shellcheck/wiki/SC1001 Signed-off-by: Dan Callahan <danc@element.io>
-rwxr-xr-x | demo/start.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/start.sh b/demo/start.sh index 28ea1b1cb6..245e9d777b 100755 --- a/demo/start.sh +++ b/demo/start.sh @@ -70,7 +70,7 @@ for port in 8080 8081 8082; do echo "tls_private_key_path: \"$DIR/etc/localhost:$https_port.tls.key\"" >> $DIR/etc/$port.config # Generate tls keys - openssl req -x509 -newkey rsa:4096 -keyout $DIR/etc/localhost\:$https_port.tls.key -out $DIR/etc/localhost\:$https_port.tls.crt -days 365 -nodes -subj "/O=matrix" + openssl req -x509 -newkey rsa:4096 -keyout $DIR/etc/localhost:$https_port.tls.key -out $DIR/etc/localhost:$https_port.tls.crt -days 365 -nodes -subj "/O=matrix" # Ignore keys from the trusted keys server echo '# Ignore keys from the trusted keys server' >> $DIR/etc/$port.config |