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
Problem: Windows paths contain a colon
Solution: rltk-3.0.1\lib\rltk\parser.rb:564
rltk-3.0.1\lib\rltk\parser.rb:564
Current:
def_file = caller()[2].split(':')[0] if opts[:use]
Should be (choose one):
def_file = caller()[2].split(':')[0..-3].join(':') if opts[:use] def_file = caller()[2][/^(.*):[^:]+:[^:]+$/, 1] if opts[:use]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem: Windows paths contain a colon
Solution:
rltk-3.0.1\lib\rltk\parser.rb:564
Current:
Should be (choose one):
The text was updated successfully, but these errors were encountered: