diff --git a/src/bonsai/Makefile b/src/bonsai/Makefile index 3a033987c0..467477dadc 100644 --- a/src/bonsai/Makefile +++ b/src/bonsai/Makefile @@ -330,12 +330,7 @@ endif # Use '-n' as on macos x86-64 doesn't have a binary wheel and it autoincludes 'cp311'. prev_whl_name=$$(find build/bonsai/wheels/tzfpy-*.whl); \ whl_name=$$(echo $$prev_whl_name | sed "s/-cp39-/-cp$(PYNUMBER)-/"); \ - echo "$$prev_whl_name $$whl_name"; \ - if [ "$$(realpath $$prev_whl_name)" = "$$(realpath $$whl_name)" ]; then \ - echo "Source and destination are the same file. Skipping move."; \ - else \ - mv -n "$$prev_whl_name" "$$whl_name"; \ - fi + mv --update=none "$$prev_whl_name" "$$whl_name"; ifneq ($(PLATFORM), linux) # Safeguard: in case one of `pip download` will break,