1
0

Use BSD-compatible in-place editing for sed. (#6887)

* commit 'ba547ec3a':
  Use BSD-compatible in-place editing for sed. (#6887)
This commit is contained in:
Andrew Morgan
2020-03-23 17:14:52 +00:00
2 changed files with 3 additions and 1 deletions

1
changelog.d/6887.misc Normal file
View File

@@ -0,0 +1 @@
Fix the use of sed in the linting scripts when using BSD sed.

View File

@@ -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