-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Windows and MacOS platforms #7
Support Windows and MacOS platforms #7
Conversation
Thanks a lot @PROger4ever ! |
@barasher, Could you make a new version tag with these changes, please? |
Here it is : v1.1.2 |
I had some problem while creating the release, here it is : v1.1.3 |
The problem has been reproduced in MacOS Catalina 10.15.7. Exiftool version:
I use the sample code:
|
@zackyjc, Could you try to set different line-breakers in the source code of go-exiftool: \n, \r, \r\n and run your code? |
Using '\n' instead of '\r', it works. try \r, \r\n, don‘t work. package exiftool
var readyToken = []byte("{ready}\n") |
@barasher,Could you change file platforms_darwin.go or fix the issue another way, please? |
Fixed in v1.3.1 |
Each platform has different line breaking characters, so it stucks on
waiting for readyToken from the scanner.
I issued this problem on Windows.