Skip to content

Commit

Permalink
Fix @gel/create old file paths (#1211)
Browse files Browse the repository at this point in the history
  • Loading branch information
scotttrinh authored Feb 25, 2025
1 parent eb475c9 commit 3456c2d
Show file tree
Hide file tree
Showing 10 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create/src/recipes/_gel/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const recipe: Recipe<GelOptions> = {
logger("Adding auth extension to project");

spinner.start("Enabling auth extension in Gel schema");
const filePath = path.resolve(projectDir, "./dbschema/default.esdl");
const filePath = path.resolve(projectDir, "./dbschema/default.gel");
const data = await fs.readFile(filePath, "utf8");
await fs.writeFile(filePath, `using extension auth;\n\n${data}`);
spinner.stop("Auth extension enabled in Gel schema");
Expand Down

0 comments on commit 3456c2d

Please sign in to comment.