Mute stderr as a quick fix

This commit is contained in:
Lassi Kortela 2021-10-03 17:24:21 +03:00
parent 4ffdd4610d
commit d1fb3bb071
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,8 @@
(begin
(define (subprocess command-line stdin-bytevector read-stdout)
(read-stdout (run/port (,(car command-line) ,@(cdr command-line))
(<< ,(utf8->string stdin-bytevector)))))))
(<< ,(utf8->string stdin-bytevector))
(> 2 "/dev/null"))))))
(gauche
(import (only (gauche process) call-with-process-io))
(begin