2021-03-25 10:53:54 -06:00
|
|
|
#!/usr/bin/env bash
|
2019-10-23 06:22:54 -06: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 04:11:42 -07:00
|
|
|
# cd to the root of the repository
|
2021-10-22 16:07:23 -06:00
|
|
|
cd "$(dirname "$0")/.." || exit
|
2021-03-09 04:11:42 -07:00
|
|
|
|
|
|
|
# Restore backup of sample config upon script exit
|
|
|
|
trap "mv docs/sample_config.yaml.bak docs/sample_config.yaml" EXIT
|
|
|
|
|
2019-10-23 06:22:54 -06:00
|
|
|
# Fix non-lowercase true/false values
|
2020-02-12 05:02:19 -07:00
|
|
|
sed -i.bak -E "s/: +True/: true/g; s/: +False/: false/g;" docs/sample_config.yaml
|
2019-10-23 06:22:54 -06:00
|
|
|
|
|
|
|
# Check if anything changed
|
2021-03-09 04:11:42 -07:00
|
|
|
diff docs/sample_config.yaml docs/sample_config.yaml.bak
|