mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #304 from esden/gsed-darwin
Use gsed vs sed on Darwin.
This commit is contained in:
commit
1064c8f61f
|
@ -1,2 +1,2 @@
|
|||
#!/bin/bash
|
||||
for f in $( find . -name .gitignore ); do sed -re "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs rm -f,;" $f; done | bash -v
|
||||
for f in $( find . -name .gitignore ); do sed -Ee "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs rm -f,;" $f; done | bash -v
|
||||
|
|
Loading…
Reference in New Issue