Torsten Schmidt

Results 4 comments of Torsten Schmidt

I experience exactly the same behaviour / error: my env: fish 3.3.1 typer: 0.4.1 click: 8.1.2

in debug mode i saw that the command is actually executed. So this works ``` irb(main):005:0> a.each_value do |v| irb(main):006:1* r = v.uptime irb(main):007:1> puts r irb(main):008:1> end ``` ```...

I also tried: ``` io_trash = File.open(File::NULL, 'w') RYE_OPTS = { :error => io_trash, ``` ``` io_trash = File.open('/dev/null', 'w') RYE_OPTS = { :error => io_trash, ``` ``` io =...