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