mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
22db45bd4d
I noticed that I'd occasionally have `scripts-dev/lint.sh` fail when messing about with config options in my PR. The script calls `scripts-dev/config-lint.sh`, which attempts some validation on the sample config. It does this by using `sed` to edit the sample_config, and then seeing if the file changed using `git diff`. The problem is: if you changed the sample_config as part of your commit, this script will error regardless. This PR attempts to change the check so that existing, unstaged changes to the sample_config will not cause the script to report an invalid file.
16 lines
517 B
Bash
Executable File
16 lines
517 B
Bash
Executable File
#!/bin/bash
|
|
# Find linting errors in Synapse's default config file.
|
|
# Exits with 0 if there are no problems, or another code otherwise.
|
|
|
|
# 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
|
|
|
|
# Fix non-lowercase true/false values
|
|
sed -i.bak -E "s/: +True/: true/g; s/: +False/: false/g;" docs/sample_config.yaml
|
|
|
|
# Check if anything changed
|
|
diff docs/sample_config.yaml docs/sample_config.yaml.bak
|