From 4ccbbccc51a03887707aa4668c8f6eeec394a757 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Thu, 18 Dec 2025 14:38:09 +0000 Subject: work/command-line-tool: Convert array inputs to vector of bindings. Earlier, we were converting array inputs to a list of bindings. We now use a vector to be consistent with the spirit and letter of the rest of the code. --- e2e-tests/tools/command-line-tool-with-array-input.scm | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 e2e-tests/tools/command-line-tool-with-array-input.scm (limited to 'e2e-tests/tools') diff --git a/e2e-tests/tools/command-line-tool-with-array-input.scm b/e2e-tests/tools/command-line-tool-with-array-input.scm new file mode 100644 index 0000000..38a8722 --- /dev/null +++ b/e2e-tests/tools/command-line-tool-with-array-input.scm @@ -0,0 +1,3 @@ +(command #:inputs (messages #:type (array string)) + #:run "echo" messages + #:outputs (output_message #:type stdout)) -- cgit 1.4.1