зеркало из https://github.com/github/ruby.git
Initialize goruby only when executing
This commit is contained in:
Родитель
ecb58a8d08
Коммит
6e544f2fed
3
goruby.c
3
goruby.c
|
@ -60,7 +60,8 @@ int
|
||||||
goruby_run_node(void *arg)
|
goruby_run_node(void *arg)
|
||||||
{
|
{
|
||||||
int state;
|
int state;
|
||||||
if (NIL_P(rb_protect(init_golf, Qtrue, &state))) {
|
if (ruby_executable_node(arg, NULL) &&
|
||||||
|
NIL_P(rb_protect(init_golf, Qtrue, &state))) {
|
||||||
return state == EXIT_SUCCESS ? EXIT_FAILURE : state;
|
return state == EXIT_SUCCESS ? EXIT_FAILURE : state;
|
||||||
}
|
}
|
||||||
return ruby_run_node(arg);
|
return ruby_run_node(arg);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче