Closed franciscocpg closed 8 years ago
Thanks very much for highlight of the issue. I think we can simplify and keep cross-OS compatibility by removing the case and using:
find "${plugin_dir}" -maxdepth 1 -type f -exec test -x "{}" \; -exec echo "${plugin_type},{}" \;
Do you agree?
I agree and I updated the branch with your suggestion. 👍
Merged, thanks very much
-printf
does not exists for BSD find command so I was getting the following error when the folder .git-semver/plugins exists:This PR fix this for OSX using
-print
andxargs
removing the remaining space.