diff options
Diffstat (limited to 'bs')
-rw-r--r-- | bs/shell.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs/shell.scm b/bs/shell.scm index 8578f72..8dea64f 100644 --- a/bs/shell.scm +++ b/bs/shell.scm @@ -10,7 +10,7 @@ (define (exec cmd) (let* ((port (popen/open-input-pipe cmd)) - (ret (read port))) + (ret (rdelim/read-string port))) (popen/close-pipe port) ret)) |