Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Update scripts to pass Shellcheck lints #11166

Merged
merged 17 commits into from
Oct 27, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions demo/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DIR="$( cd "$( dirname "$0" )" && pwd )"

CWD=$(pwd)

cd "$DIR/.."
DMRobertson marked this conversation as resolved.
Show resolved Hide resolved
cd "$DIR/.." || exit

mkdir -p demo/etc

Expand All @@ -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 \
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion scripts-dev/check_line_terminators.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts-dev/config-lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down