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 8bb4fae commit 0d39f0fCopy full SHA for 0d39f0f
cli/index.js
@@ -639,7 +639,7 @@ export async function main(argv, options) {
639
if (runtimeText == null) {
640
runtimePath = runtimeName;
641
runtimeText = await readFile(runtimePath + extension, baseDir);
642
- if (runtimeText == null) return prepareResult(Error(`Runtime '${runtimeName}' not found.`));
+ if (runtimeText == null) return prepareResult(Error(`Runtime '${path.resolve(baseDir, runtimePath + extension)}' is not found.`));
643
} else {
644
runtimePath = `~lib/${runtimePath}`;
645
}
0 commit comments