We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have all of my rom dirs as symbolic links. filepath.Walk(...) does not follow symbolic links as per https://golang.org/pkg/path/filepath/#Walk
To fix, add this line as the first line of Scrape(...):
xmlOpts.RomDir, _ = filepath.EvalSymlinks(xmlOpts.RomDir)
The text was updated successfully, but these errors were encountered:
Follow rom_dir symlink. #66
6e0e6aa
Thanks. I've made the change.
Sorry, something went wrong.
Thanks!!!
No branches or pull requests
I have all of my rom dirs as symbolic links. filepath.Walk(...) does not follow symbolic links as per https://golang.org/pkg/path/filepath/#Walk
To fix, add this line as the first line of Scrape(...):
The text was updated successfully, but these errors were encountered: