diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-04-05 02:56:28 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-04-05 02:56:28 +0200 |
commit | 6ef2224331e7246d1e107c9e533a7cadce786107 (patch) | |
tree | 52555d22f10783c6f8eeaab3dbee76579d1f3014 /manual | |
parent | 7370ae01e978f0552f1565b88c0f44b402d09f4e (diff) | |
parent | 66a5da5edc41a2b33413c965337001bb179d30f6 (diff) | |
download | yosys-6ef2224331e7246d1e107c9e533a7cadce786107.tar.gz yosys-6ef2224331e7246d1e107c9e533a7cadce786107.tar.bz2 yosys-6ef2224331e7246d1e107c9e533a7cadce786107.zip |
Merge pull request #31 from bentley/posix-rm
Remove non-POSIX 'rm -v'.
Diffstat (limited to 'manual')
-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 13554c01b..f4a2ea83a 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 -r rm -vf,;" $f; done | bash -v +for f in $( find . -name .gitignore ); do sed -re "s,^,find ${f%.gitignore} -name ',; s,$,' | xargs -r rm -f,;" $f; done | bash -v |