Refine error message
Highlight failed command and suggest installing the command. [Bug #16042]
This commit is contained in:
parent
ec0d742dd7
commit
4d75346187
@ -4,7 +4,12 @@ BEGIN {
|
|||||||
|
|
||||||
colorize = Colorize.new
|
colorize = Colorize.new
|
||||||
file = ARGV.shift
|
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")
|
puts colorize.fail("not bison")
|
||||||
exit
|
exit
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user