I'm using the following command to synch files from one folder to another on my local OSX system:
rsync -avC ./src ~/Sites
Inside of ./src there are several sub-folders:
- ./src/assets
- ./src/core
- ./src/css
- ./src/js
All folders and content are copied as expected, except for ./src/core. Renaming the folder resolves the problem, but isn't an option. For example, named as ./src/core2 and it works.
