We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 310f83c commit cb664d5Copy full SHA for cb664d5
_tools/ruby_h_to_go/exe/ruby_h_to_go
@@ -19,7 +19,10 @@ DEFAULT_DIST_DIR = File.expand_path("../dist", __dir__)
19
20
opt = OptionParser.new
21
opt.on("-H", "--header-dir HEADER_DIR", "ruby header dir (default: #{DEFAULT_RUBY_HEADER_DIR})") { |v| header_dir = v }
22
-opt.on("-D", "--dist-dir DIST_DIR", "dist dir for auto-generated Go code (default: #{DEFAULT_DIST_DIR})") { |v| dist_dir = v }
+
23
+opt.on("-D", "--dist-dir DIST_DIR", "dist dir for auto-generated Go code (default: #{DEFAULT_DIST_DIR})") do |v|
24
+ dist_dir = v
25
+end
26
27
opt.parse!(ARGV)
28
0 commit comments