Skip to content

Commit 130e5d3

Browse files
committed
escape chars
1 parent 8ab718f commit 130e5d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/WranglerCommand.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function getCommand(path: string) {
2424
node = next.subtree;
2525
}
2626
27-
throw new Error(`[WranglerCommand] Command \"${path}\" not found`);
27+
throw new Error(`[WranglerCommand] Command "${path}" not found`);
2828
}
2929
3030
const props = z.object({
@@ -36,7 +36,7 @@ let { command } = props.parse(Astro.props);
3636
const definition = getCommand(command);
3737
3838
if (!definition.args) {
39-
throw new Error(`[WranglerCommand] \"${command}\" has no arguments`);
39+
throw new Error(`[WranglerCommand] "${command}" has no arguments`);
4040
}
4141
4242
const positionals = definition.positionalArgs;

0 commit comments

Comments
 (0)