You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.. and use a simpler(?) way to invoke sed
I don't know why this apparently only started recently, but
circuitpython-build-tools creates build_deps/circuitpython
with a directory 'nvm.toml' inside. The existing sed command would
attempt to run on this directory.
`find pattern... -exec command... +` takes the matching items and puts
them on the command... commandline, without any concerns about
whitespace or quoting. `for $(find...)` has several concerns about
whitespace and quoting. It also adds "-type f" to restrict the match
to only files, not directories.
0 commit comments