Fix interpolated string Failed to generate docs...

A string was using the wrong kind of quotes and so the interpolated fields weren't.

Signed-off-by: Oliver Paraskos <oliver@tryflux.com>
This commit is contained in:
Oliver Paraskos
2022-01-20 10:52:15 +00:00
committed by GitHub
parent 4918be78b0
commit 46dcbaeb64
@@ -150,7 +150,7 @@ export class TechdocsGenerator implements GeneratorBase {
`Failed to generate docs from ${inputDir} into ${outputDir}`,
);
throw new ForwardedError(
'Failed to generate docs from ${inputDir} into ${outputDir}',
`Failed to generate docs from ${inputDir} into ${outputDir}`,
error,
);
}