You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unicode2ragel.rb:85:in `initialize': No such file or directory @ rb_sysopen - http://www.unicode.org/Public/9.0.0/ucd/DerivedCoreProperties.txt (Errno::ENOENT)
from unicode2ragel.rb:85:in `open'
from unicode2ragel.rb:85:in `each_alpha'
from unicode2ragel.rb:292:in `generate_machine'
from unicode2ragel.rb:334:in `block in <main>'
from unicode2ragel.rb:334:in `each'
from unicode2ragel.rb:334:in `<main>'
hclsyntax/generate.go:7: running "ruby": exit status 1
Which was fixed by:
diff --git a/hclsyntax/unicode2ragel.rb b/hclsyntax/unicode2ragel.rb
index 235265d..f7b652e 100644
--- a/hclsyntax/unicode2ragel.rb+++ b/hclsyntax/unicode2ragel.rb@@ -82,7 +82,7 @@ end
# range and description.
def each_alpha( url, property )
- open( url ) do |file|+ URI.open( url ) do |file|
file.each_line do |line|
next if line =~ /^#/;
next if line !~ /; #{property} #/;
Second issue is a panic when running with go1.22.2:
First issue I encountered was:
Which was fixed by:
Second issue is a panic when running with go1.22.2:
Which was fixed by downgrading to go 1.18
The text was updated successfully, but these errors were encountered: