Skip to content

Commit 8864c1c

Browse files
authored
cli: show file name when failing to open input (#550)
1 parent c8b6545 commit 8864c1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compileApplicationToWasm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export async function compileApplicationToWasm(input, output, wasmEngine, enable
2727
await readFile(input, { encoding: "utf-8" });
2828
} catch (error) {
2929
console.error(
30-
"Error: Failed to open the `input` (${input})",
30+
`Error: Failed to open the \`input\` (${input})`,
3131
error.message
3232
);
3333
process.exit(1);

0 commit comments

Comments
 (0)