diff options
author | Dan Callahan <danc@element.io> | 2021-10-18 16:44:27 +0100 |
---|---|---|
committer | Dan Callahan <danc@element.io> | 2021-10-22 23:08:53 +0100 |
commit | 12d79ff1b6287b148e84d3b2c14dfbbfc6e11361 (patch) | |
tree | a04121ddee74c2fd86206fa870d91d34f7f407ce /scripts-dev/check_line_terminators.sh | |
parent | Add type hints for most `HomeServer` parameters (#11095) (diff) | |
download | synapse-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 'scripts-dev/check_line_terminators.sh')
-rwxr-xr-x | scripts-dev/check_line_terminators.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts-dev/check_line_terminators.sh b/scripts-dev/check_line_terminators.sh index c983956231..762f848cab 100755 --- a/scripts-dev/check_line_terminators.sh +++ b/scripts-dev/check_line_terminators.sh @@ -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 |