We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64f9105 commit 43dc045Copy full SHA for 43dc045
cli/commands/db/generate.mjs
@@ -54,7 +54,7 @@ export default defineCommand({
54
...options,
55
stdin: 'inherit',
56
stdout: 'inherit'
57
- })`drizzle-kit generate --config=./.nuxt/hub/db/drizzle.config.ts ${args.custom ? '--custom' : ''} ${args.name ? `--name=${args.name}` : ''}`
+ })`drizzle-kit generate --config=./.nuxt/hub/db/drizzle.config.ts${args.custom ? ' --custom' : ''}${args.name ? ` --name=${args.name}` : ''}`
58
// Drizzle-kit does not exit with an error code when there is an error, so we need to check the stderr
59
if (stderr) {
60
consola.error(stderr)
0 commit comments