From 2309f5577c89a841e6e05154c99be9cc0eed2ce3 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 4 Oct 2008 10:27:37 +0000 Subject: [PATCH] allow commands with the hereDoc property to use the heredoc in sourced files --- content/io.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/io.js b/content/io.js index f758aa3d..81978f6f 100644 --- a/content/io.js +++ b/content/io.js @@ -821,7 +821,7 @@ lookup: { break; } - else if (command.name == "javascript") + else if (command.hereDoc) { // check for a heredoc let matches = args.match(/(.*)<<\s*(\S+)$/);