cosmetics for display-job-output
This commit is contained in:
parent
cafba717cf
commit
05600a0c92
6
job.scm
6
job.scm
|
@ -15,11 +15,11 @@
|
||||||
(define (display-job-output j-res)
|
(define (display-job-output j-res)
|
||||||
(display
|
(display
|
||||||
(string-append
|
(string-append
|
||||||
"job finished with output exitno:\n"
|
";;; job finished with exitno: "
|
||||||
(number->string (job-res-errno j-res)) "\n"
|
(number->string (job-res-errno j-res)) "\n"
|
||||||
"job finished with output stdout:\n"
|
";;; job finished with stdout: "
|
||||||
(job-res-stdout j-res) "\n"
|
(job-res-stdout j-res) "\n"
|
||||||
"job finished with output stderr:\n"
|
";;; job finished with stderr: "
|
||||||
(job-res-stderr j-res) "\n"))
|
(job-res-stderr j-res) "\n"))
|
||||||
(newline))
|
(newline))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue