Skip to content

Commit

Permalink
Create edgedb.toml instead of gel.toml for now
Browse files Browse the repository at this point in the history
  • Loading branch information
fantix committed Dec 4, 2024
1 parent f085db1 commit 5e7f3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/portable/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ pub fn init(options: &Init, opts: &crate::options::Options) -> anyhow::Result<()
.project_dir
.clone()
.unwrap_or_else(|| env::current_dir().unwrap());
let config_path = dir.join(PROJECT_FILES[0]);
let config_path = dir.join(PROJECT_FILES[1]);
init_new(options, &dir, config_path, opts)?;
return Ok(());
};
Expand Down

0 comments on commit 5e7f3d7

Please sign in to comment.