mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Refine error message
Highlight failed command and suggest installing the command. [Bug #16042]
This commit is contained in:
parent
ec0d742dd7
commit
4d75346187
1 changed files with 6 additions and 1 deletions
|
@ -4,7 +4,12 @@ BEGIN {
|
|||
|
||||
colorize = Colorize.new
|
||||
file = ARGV.shift
|
||||
unless /\Abison .* (\d+)\.\d+/ =~ IO.popen(ARGV+%w[--version], &:read)
|
||||
begin
|
||||
version = IO.popen(ARGV+%w[--version], &:read)
|
||||
rescue Errno::ENOENT
|
||||
abort "Failed to run `#{colorize.fail ARGV.join(' ')}'; You may have to install it."
|
||||
end
|
||||
unless /\Abison .* (\d+)\.\d+/ =~ version
|
||||
puts colorize.fail("not bison")
|
||||
exit
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue