Closed ibc closed 6 months ago
worker/fbs/meson.build
worker/include/FBS
cargo publish
invoke clean-all
shutil.rmtree(path, ignore_errors=True)
try/except
Details
worker/fbs/meson.build
produces FlatBuffers C++ include files inworker/include/FBS
folder.cargo publish
complains if that folder and its files exist.invoke clean-all
also deleteworker/include/FBS
.shutil.rmtree(path, ignore_errors=True)
instead of wrapping it withtry/except
everywhere (see https://docs.python.org/3/library/shutil.html#shutil.rmtree).