summary refs log tree commit diff
path: root/demo/start.sh
diff options
context:
space:
mode:
authorDan Callahan <danc@element.io>2021-10-18 16:44:27 +0100
committerDan Callahan <danc@element.io>2021-10-22 23:08:53 +0100
commit12d79ff1b6287b148e84d3b2c14dfbbfc6e11361 (patch)
treea04121ddee74c2fd86206fa870d91d34f7f407ce /demo/start.sh
parentAdd type hints for most `HomeServer` parameters (#11095) (diff)
downloadsynapse-12d79ff1b6287b148e84d3b2c14dfbbfc6e11361.tar.xz
Fix Shellcheck SC2164: exit in case cd fails.
Use `cd ... || exit` in case cd fails.

https://github.com/koalaman/shellcheck/wiki/SC2164

Signed-off-by: Dan Callahan <danc@element.io>
Diffstat (limited to 'demo/start.sh')
-rwxr-xr-xdemo/start.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/demo/start.sh b/demo/start.sh

index bc4854091b..fc5d08a63b 100755 --- a/demo/start.sh +++ b/demo/start.sh
@@ -4,7 +4,7 @@ DIR="$( cd "$( dirname "$0" )" && pwd )" CWD=$(pwd) -cd "$DIR/.." +cd "$DIR/.." || exit mkdir -p demo/etc @@ -18,7 +18,7 @@ for port in 8080 8081 8082; do https_port=$((port + 400)) mkdir -p demo/$port - pushd demo/$port + pushd demo/$port || exit #rm $DIR/etc/$port.config python3 -m synapse.app.homeserver \ @@ -152,7 +152,7 @@ for port in 8080 8081 8082; do --config-path "$DIR/etc/$port.config" \ -D \ - popd + popd || exit done -cd "$CWD" +cd "$CWD" || exit