-
Notifications
You must be signed in to change notification settings - Fork 27
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
Issue with Webmention command #115
Comments
I took my first stab at addressing this in 4782601. The issue seems to be the command’s ability to access a fully-bootstrapped I’d love to get your thoughts @ashmaroli. Did I miss anything? Could this be simplified? Worth noting: without access to the |
@aarongustafson I've submitted a simplified proposal to resolve this issue in Once that is done, we may refactor class WebmentionCommand < Command
def self.init_with_program(prog)
prog.command(:webmention) do |c|
c.syntax "webmention"
c.description "Sends queued webmentions"
c.action { |_, options| process options }
end
end
def self.process(options = {})
[...]
end |
Getting an error when attempting to make webmentions:
I was not getting this issue prior to some of the recent performance optimizations. My guess is we missed some necessary refactoring as, from the looks of it,
Jekyll.sanitized_path()
is failing to resolve aclean_path
and then the call tosub
is failing.The text was updated successfully, but these errors were encountered: