summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/config.rs1
-rw-r--r--src/main.rs2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs
index 0ed2a6b..f917e15 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -8,6 +8,7 @@ use crate::error::Error;
use crate::fragment::FragmentDataDesc;
pub const CONFIG_FILE_NAMES: &[&str] = &[".changelog.toml", "changelog.toml"];
+pub const CONFIG_FILE_DEFAULT_NAME: &str = CONFIG_FILE_NAMES[1];
pub const DEFAULT_CONFIG: &str = include_str!("../assets/default_config.toml");
#[derive(Debug, getset::Getters, getset::CopyGetters, serde::Deserialize, serde::Serialize)]
diff --git a/src/main.rs b/src/main.rs
index 5e618c5..d57e5f6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -118,7 +118,7 @@ fn init(repo_workdir_path: PathBuf) -> miette::Result<()> {
.create(true)
.append(false)
.write(true)
- .open(repo_workdir_path.join(crate::config::CONFIG_FILE_NAMES[1]))
+ .open(repo_workdir_path.join(crate::config::CONFIG_FILE_DEFAULT_NAME))
.map_err(Error::from)
.into_diagnostic()?;