From 9aeba0c103b791656e8e0fa633047ca8debe70a5 Mon Sep 17 00:00:00 2001 From: Brad Arant Date: Mon, 11 Nov 2024 09:26:38 -0800 Subject: [PATCH] Upgraded include tag to use resolution keyword method. --- __include.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/__include.cpp b/__include.cpp index cd21d3c..234bb61 100644 --- a/__include.cpp +++ b/__include.cpp @@ -10,6 +10,7 @@ namespace jet { if(hasContainer) throw coreutils::Exception("include tag should not have a container."); hasContainer = true; + resolveKeyword("file"); coreutils::File file(variables["file"]); file.read(); container = file.asZString();