mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Use BSD-compatible in-place editing for sed. (#6887)
This commit is contained in:
parent
88d41e94f5
commit
ba547ec3a9
1
changelog.d/6887.misc
Normal file
1
changelog.d/6887.misc
Normal file
@ -0,0 +1 @@
|
||||
Fix the use of sed in the linting scripts when using BSD sed.
|
@ -3,7 +3,8 @@
|
||||
# Exits with 0 if there are no problems, or another code otherwise.
|
||||
|
||||
# Fix non-lowercase true/false values
|
||||
sed -i -E "s/: +True/: true/g; s/: +False/: false/g;" docs/sample_config.yaml
|
||||
sed -i.bak -E "s/: +True/: true/g; s/: +False/: false/g;" docs/sample_config.yaml
|
||||
rm docs/sample_config.yaml.bak
|
||||
|
||||
# Check if anything changed
|
||||
git diff --exit-code docs/sample_config.yaml
|
||||
|
Loading…
Reference in New Issue
Block a user