We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da981e commit 86d6540Copy full SHA for 86d6540
src/parser-includes.ts
@@ -94,7 +94,7 @@ export class ParserIncludes {
94
validateIncludeLocal(value["local"]);
95
const files = await resolveIncludeLocal(value["local"], cwd);
96
if (files.length == 0) {
97
- throw new AssertionError({message: `Local include file cannot be found ${cwd}${value["local"]}`});
+ throw new AssertionError({message: `Local include file cannot be found ${value["local"]}`});
98
}
99
for (const localFile of files) {
100
const content = await Parser.loadYaml(localFile, {inputs: value.inputs ?? {}}, expandVariables);
0 commit comments