diff options
-rw-r--r-- | ccwl/ccwl.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ccwl/ccwl.scm b/ccwl/ccwl.scm index 1469471..7608d51 100644 --- a/ccwl/ccwl.scm +++ b/ccwl/ccwl.scm @@ -377,6 +377,10 @@ list of supplied input <key> objects." input-keys))))) (pairify (syntax->datum #'(args ...)))) (command-outputs command-object))))))) + ;; commands with an implicit step identifier + ((command args ...) + (workflow-steps #'(command (command) args ...) + input-keys)) ;; any other unrecognized syntax (x (error "Unrecognized syntax:" (syntax->datum #'x))))) |