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 aed4497 commit 8c70093Copy full SHA for 8c70093
vite.config.ts
@@ -9,7 +9,7 @@ function consolidateSnippets(projectRoot: string) {
9
cwd: projectRoot,
10
});
11
12
- if (cmd.status !== 1) return;
+ if (cmd.status === 0) return;
13
14
console.log(`Consolidating snippets failed:\n${cmd.output.toString()}`);
15
}
0 commit comments