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
When running arclight:index_url with a valid URL, it throws the following error:
arclight:index_url
URL
rake arclight:index_url URL=https:/path/to/valid/ead.xml rake aborted! Errno::ENOENT: No such file or directory @ rb_sysopen - https:/path/to/valid/ead.xml (Errno::ENOENT)
The issue appears to be at https://github.com/projectblacklight/arclight/blob/main/lib/tasks/index.rake#L46, where Ruby's basic open() in invoked (checking the filesystem) and not a HTTP-aware open().
open()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running
arclight:index_url
with a validURL
, it throws the following error:The issue appears to be at https://github.com/projectblacklight/arclight/blob/main/lib/tasks/index.rake#L46, where Ruby's basic
open()
in invoked (checking the filesystem) and not a HTTP-awareopen()
.The text was updated successfully, but these errors were encountered: