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

Make sure the C locale is set when calling the compiler

This commit is contained in:
Petko Bordjukov 2015-07-05 17:16:57 +03:00
parent aba295070c
commit ebc7c34f70

View file

@ -55,7 +55,7 @@ module Libv8
end end
def execute_command(command) def execute_command(command)
output = `#{command}` output = `env LC_ALL=C LANG=C #{command}`
status = $? status = $?
ExecutionResult.new output, status ExecutionResult.new output, status
end end