mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 11:36:07 -04:00
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>
This commit is contained in:
parent
2b82ec425f
commit
12d79ff1b6
3 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue