Skip to content

Commit

Permalink
rbinstall.rb: Fix a closing parenthesis [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Jan 30, 2024
1 parent 928f388 commit 4e72c9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/rbinstall.rb
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def parse_args(argv = ARGV)
opt.on('--debug-symbols=SUFFIX', /\w+/) {|name| $debug_symbols = ".#{name}"}

unless $install_procs.empty?
w = (w = ENV["COLUMNS"] and (w = w.to_i) > 80 ? w - 30 : 50)
w = (w = ENV["COLUMNS"] and (w = w.to_i) > 80) ? w - 30 : 50
opt.on("\n""Types for --install and --exclude:")
mesg = " "
$install_procs.each_key do |t|
Expand Down

0 comments on commit 4e72c9a

Please sign in to comment.