Skip to content

Commit

Permalink
cli: fixup seed flag in dev
Browse files Browse the repository at this point in the history
  • Loading branch information
pbohlman authored and wernst committed Jun 1, 2024
1 parent 0b82655 commit 6afd5be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/dev.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export default Command({
projName: CWD.split('/').pop() + '-local',
}).toString()}`);

if (flags.seed)
if (flags.seed !== undefined)
await insertSeeds(dbUrl, serviceKey, flags.seed, false, ctx.schema);

return (
Expand Down

0 comments on commit 6afd5be

Please sign in to comment.