選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

16 行
537 B

  1. #!/usr/bin/env bash
  2. # Find linting errors in Synapse's default config file.
  3. # Exits with 0 if there are no problems, or another code otherwise.
  4. # cd to the root of the repository
  5. cd "`dirname "$0"`/.." || exit
  6. # Restore backup of sample config upon script exit
  7. trap "mv docs/sample_config.yaml.bak docs/sample_config.yaml" EXIT
  8. # Fix non-lowercase true/false values
  9. sed -i.bak -E "s/: +True/: true/g; s/: +False/: false/g;" docs/sample_config.yaml
  10. # Check if anything changed
  11. diff docs/sample_config.yaml docs/sample_config.yaml.bak