Re: Windows Ruby changes

2013-05-28 Thread Paul Burba
On Sun, May 26, 2013 at 2:23 AM, Daniel Shahaf wrote: > Paul, > > wrt the r1480344 group in STATUS: I think the 'rescue' block, here: > >ENV["PATH"].split(";").each do |path| > + > +# Change the cwd to path, but ignore non-existent paths. > +begin > +

Windows Ruby changes

2013-05-25 Thread Daniel Shahaf
Paul, wrt the r1480344 group in STATUS: I think the 'rescue' block, here: ENV["PATH"].split(";").each do |path| + +# Change the cwd to path, but ignore non-existent paths. +begin + Dir.chdir(path) +rescue Errno::ENOENT +end