Skip to content

Commit 86d6540

Browse files
committed
change back exception message to adhere with tests
1 parent 1da981e commit 86d6540

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser-includes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export class ParserIncludes {
9494
validateIncludeLocal(value["local"]);
9595
const files = await resolveIncludeLocal(value["local"], cwd);
9696
if (files.length == 0) {
97-
throw new AssertionError({message: `Local include file cannot be found ${cwd}${value["local"]}`});
97+
throw new AssertionError({message: `Local include file cannot be found ${value["local"]}`});
9898
}
9999
for (const localFile of files) {
100100
const content = await Parser.loadYaml(localFile, {inputs: value.inputs ?? {}}, expandVariables);

0 commit comments

Comments
 (0)