summary refs log tree commit diff
path: root/scripts-dev/config-lint.sh
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-02-18 15:50:06 +0000
committerErik Johnston <erik@matrix.org>2020-02-18 16:11:26 +0000
commitbc936b56572aef4fc16fffaa44a75bfdf99eeec4 (patch)
tree8c4c030157dd4fa9df5a1d04dac76486327f9d7e /scripts-dev/config-lint.sh
parentMerge branch 'release-v1.10.0' into matrix-org-hotfixes (diff)
parentIncrease perf of `get_auth_chain_ids` used in state res v2. (#6937) (diff)
downloadsynapse-bc936b56572aef4fc16fffaa44a75bfdf99eeec4.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'scripts-dev/config-lint.sh')
-rwxr-xr-xscripts-dev/config-lint.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts-dev/config-lint.sh b/scripts-dev/config-lint.sh

index 677a854c85..189ca66535 100755 --- a/scripts-dev/config-lint.sh +++ b/scripts-dev/config-lint.sh
@@ -3,7 +3,8 @@ # Exits with 0 if there are no problems, or another code otherwise. # Fix non-lowercase true/false values -sed -i -E "s/: +True/: true/g; s/: +False/: false/g;" docs/sample_config.yaml +sed -i.bak -E "s/: +True/: true/g; s/: +False/: false/g;" docs/sample_config.yaml +rm docs/sample_config.yaml.bak # Check if anything changed git diff --exit-code docs/sample_config.yaml