diff --git a/.changeset/new-adults-float.md b/.changeset/new-adults-float.md new file mode 100644 index 000000000000..9a1b9cae2c11 --- /dev/null +++ b/.changeset/new-adults-float.md @@ -0,0 +1,5 @@ +--- +"wrangler": patch +--- + +fix console output for `wrangler d1 migrations create` diff --git a/packages/wrangler/src/d1/migrations/create.ts b/packages/wrangler/src/d1/migrations/create.ts index 780a5a797dee..6403acda5bce 100644 --- a/packages/wrangler/src/d1/migrations/create.ts +++ b/packages/wrangler/src/d1/migrations/create.ts @@ -55,7 +55,7 @@ export const CreateHandler = withConfig( logger.log(`✅ Successfully created Migration '${newMigrationName}'!\n`); logger.log(`The migration is available for editing here`); - logger.log(`${migrationsPath}/{newMigrationName}`); + logger.log(`${migrationsPath}/${newMigrationName}`); } );