Fix make update-examples.
The existing script had some limitations:
- It expected a certain level of nesting, and failed for
tests/test_scenes/material_cycle/material_spatial/ due to the extra
level of nesting
- It only copied `.escn` files, but we actually need to make sure other
files (like `.png` textures) are produced
- It would not clean up files left behind from prior runs. For example,
if an update failed to produce a `.png`, but we had it left from the
prior run, we wouldn't notice.
The `rm`/`cp` approach is simpler and solves these problems.