1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00

Improve --with-system-v8 error message

Every time I run into this message I struggle to understand what it's telling me to do.

This new error message clearly state the option that caused it (`--with-system-v8`) 
and it clearly focuses on the problem at hand: the system v8 wasn't found.

This commit also fixes the typos and removes the unnecessary signature.
This commit is contained in:
Olivier Lacan 2015-12-02 04:21:45 -05:00 committed by Petko Bordjukov
parent 2bb0219402
commit ac0138e667

View file

@ -59,16 +59,15 @@ module Libv8
class NotFoundError < StandardError
def initialize(*args)
super(<<-EOS)
You have chosen to use the version of V8 found on your system
and *not* the one that is bundle with the libv8 rubygem. However,
it could not be located. please make sure you have a version of
v8 that is compatible with #{Libv8::VERSION} installed. You may
need to special --with-v8-dir options if it is in a non-standard
location
By using --with-system-v8, you have chosen to use the version
of V8 found on your system and *not* the one that is bundled with
the libv8 rubygem.
thanks,
The Mgmt
However, your system version of v8 could not be located.
Please make sure your system version of v8 that is compatible
with #{Libv8::VERSION} installed. You may need to use the
--with-v8-dir option if it is installed in a non-standard location
EOS
end
end