about summary refs log tree commit diff
path: root/e2e-tests/tools/capture-stdout.scm
blob: 0901f4d430b87b7d63ebe217e3a95459f8870d25 (plain)
1
2
3
4
5
6
7
8
(define print
  (command #:inputs (message #:type string)
           #:run "echo" message
           #:outputs (printed_message #:type stdout)
           #:stdout "printed-message-output.txt"))

(workflow ((message #:type string))
  (print #:message message))