mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-03 21:01:23 +00:00
POSIX find requires a path argument.
This commit is contained in:
parent
b950197da1
commit
66a5da5edc
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
rm -fv LICENSE *.cc *.h
|
rm -f LICENSE *.cc *.h
|
||||||
git clone --depth 1 https://github.com/niklasso/minisat minisat_upstream
|
git clone --depth 1 https://github.com/niklasso/minisat minisat_upstream
|
||||||
rm minisat_upstream/minisat/*/Main.cc
|
rm minisat_upstream/minisat/*/Main.cc
|
||||||
mv minisat_upstream/LICENSE minisat_upstream/minisat/*/*.{h,cc} .
|
mv minisat_upstream/LICENSE minisat_upstream/minisat/*/*.{h,cc} .
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/bash
|
#!/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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue