2021-03-25 12:53:54 -04:00
|
|
|
#!/usr/bin/env bash
|
2019-10-23 08:22:54 -04:00
|
|
|
# Find linting errors in Synapse's default config file.
|
|
|
|
# Exits with 0 if there are no problems, or another code otherwise.
|
|
|
|
|
2021-03-09 06:11:42 -05:00
|
|
|
# cd to the root of the repository
|
|
|
|
cd `dirname $0`/..
|
|
|
|
|
|
|
|
# Restore backup of sample config upon script exit
|
|
|
|
trap "mv docs/sample_config.yaml.bak docs/sample_config.yaml" EXIT
|
|
|
|
|
2019-10-23 08:22:54 -04:00
|
|
|
# Fix non-lowercase true/false values
|
2020-02-12 07:02:19 -05:00
|
|
|
sed -i.bak -E "s/: +True/: true/g; s/: +False/: false/g;" docs/sample_config.yaml
|
2019-10-23 08:22:54 -04:00
|
|
|
|
|
|
|
# Check if anything changed
|
2021-03-09 06:11:42 -05:00
|
|
|
diff docs/sample_config.yaml docs/sample_config.yaml.bak
|