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:
parent
aba295070c
commit
ebc7c34f70
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue