Open kbucheli opened 6 years ago
I've seen the same with string-references, which is bizarre and unexpected.
At least in my case this was another symptom of #124 . I was passing an undef timer to IPC::Run::start and it somehow landed up being recognised as a GLOB reference, resulting in this error.
Changing
IPC::Run::start([..cmd_args..], ..., $timer);
to
my @ipcrun_args = ([...cmd_args...], ...)
push @ipcrun_args $timer if defined($timer);
IPC::Run::stat @ipcrun_args;
resolved the issue.
outputs:
Version: 20180523.0 (it used to work with v0.96)