Accept string arguments

This commit is contained in:
Andre Nathan 2013-12-06 09:37:29 -02:00
parent 5c1d459b67
commit 892e1637b1

View file

@ -1160,6 +1160,9 @@ lxc_run_command(VALUE self, VALUE rb_command)
lxc_attach_command_t cmd;
VALUE rb_program;
if (TYPE(rb_command) == T_STRING)
rb_command = rb_str_split(rb_command, " ");
rb_program = rb_ary_entry(rb_command, 0);
cmd.program = StringValuePtr(rb_program);
cmd.argv = ruby_to_c_string_array(rb_command);