Ver código fonte

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>
tags/v1.47.0rc1
Dan Callahan 2 anos atrás
pai
commit
12d79ff1b6
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 5FAD56482D9EB851
3 arquivos alterados com 6 adições e 6 exclusões
  1. +4
    -4
      demo/start.sh
  2. +1
    -1
      scripts-dev/check_line_terminators.sh
  3. +1
    -1
      scripts-dev/config-lint.sh

+ 4
- 4
demo/start.sh Ver arquivo

@@ -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

+ 1
- 1
scripts-dev/check_line_terminators.sh Ver arquivo

@@ -25,7 +25,7 @@
# terminators are found, 0 otherwise.

# cd to the root of the repository
cd `dirname $0`/..
cd `dirname $0`/.. || exit

# Find and print files with non-unix line terminators
if find . -path './.git/*' -prune -o -type f -print0 | xargs -0 grep -I -l $'\r$'; then


+ 1
- 1
scripts-dev/config-lint.sh Ver arquivo

@@ -3,7 +3,7 @@
# Exits with 0 if there are no problems, or another code otherwise.

# cd to the root of the repository
cd `dirname $0`/..
cd `dirname $0`/.. || exit

# Restore backup of sample config upon script exit
trap "mv docs/sample_config.yaml.bak docs/sample_config.yaml" EXIT


Carregando…
Cancelar
Salvar