Use BSD-compatible in-place editing for sed. (#6887)
This commit is contained in:
parent
88d41e94f5
commit
ba547ec3a9
|
@ -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.
|
# Exits with 0 if there are no problems, or another code otherwise.
|
||||||
|
|
||||||
# Fix non-lowercase true/false values
|
# 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
|
# Check if anything changed
|
||||||
git diff --exit-code docs/sample_config.yaml
|
git diff --exit-code docs/sample_config.yaml
|
||||||
|
|
Loading…
Reference in New Issue