-
Couldn't load subscription status.
- Fork 171
Description
After upgrading to macOS 15.4, I started getting the following error when running wordmove push/pull:
rsync: empty remote host
Cause:
Apple replaced rsync with a version called openrsync.
Solution:
-
Install rsync via Homebrew:
brew install rsync -
Before running Wordmove, temporarily set your PATH to use Homebrew's rsync:
export PATH="/opt/homebrew/bin:$PATH" -
Now you should be able to run your normal Wordmove commands.
This forces Wordmove to use rsync for the current terminal session only. It does not affect the rest of your system or macOS tools.
This fixed the issue for me without needing to modify system files or create wrapper scripts. Since I'm not too familiar with the specifics of these processes, I decided to go with this temporary approach. Hope it helps others.