diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-02-05 12:00:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-05 12:00:21 +0100 |
commit | 1064c8f61ffe81db10ddae365f2478db513a19a4 (patch) | |
tree | 35415f5e063aff0f104c17e0976c9b53fc5170b5 | |
parent | 5541b421590e9ab16eef899508bad53494258819 (diff) | |
parent | e3a12b57f571423979869b28c4b49f78abe6e2c4 (diff) | |
download | yosys-1064c8f61ffe81db10ddae365f2478db513a19a4.tar.gz yosys-1064c8f61ffe81db10ddae365f2478db513a19a4.tar.bz2 yosys-1064c8f61ffe81db10ddae365f2478db513a19a4.zip |
Merge pull request #304 from esden/gsed-darwin
Use gsed vs sed on Darwin.
-rwxr-xr-x | manual/clean.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/clean.sh b/manual/clean.sh index 11c2e7bf2..addc34ed1 100755 --- a/manual/clean.sh +++ b/manual/clean.sh @@ -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 |