From 22977baf000ff18941eb78dcc300d115667e5ec8 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 17 Aug 2021 16:00:23 +0530 Subject: ccwl: Define output objects using a macro instead of a function. This allows us to do sophisticated syntax checking at an early stage, very close to the user interface. That way error messages from ccwl will make a lot more sense. * ccwl/ccwl.scm (output): Re-implement as macro. (command): Use the new macro interface. * doc/capture-output-file-with-parameter-reference.scm, doc/capture-output-file.scm, doc/capture-stdout.scm, doc/checksum.scm, doc/decompress-compile-run.scm: Use new quoting syntax for output types. --- doc/capture-stdout.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/capture-stdout.scm') diff --git a/doc/capture-stdout.scm b/doc/capture-stdout.scm index 1aed277..b9b6774 100644 --- a/doc/capture-stdout.scm +++ b/doc/capture-stdout.scm @@ -1,7 +1,7 @@ (define print (command #:inputs (message #:type string) #:run "echo" message - #:outputs (printed-message #:type 'stdout))) + #:outputs (printed-message #:type stdout))) (workflow ((message #:type string)) (print #:message message)) -- cgit v1.2.3