diff --git a/quickpeep/src/bin/qp-seedcoll-dump.rs b/quickpeep/src/bin/qp-seedcoll-dump.rs index c98738f..2d28b6e 100644 --- a/quickpeep/src/bin/qp-seedcoll-dump.rs +++ b/quickpeep/src/bin/qp-seedcoll-dump.rs @@ -27,8 +27,9 @@ pub async fn main() -> anyhow::Result<()> { .context("Must specify output file as arg № 1! :)")?, ); - let config_path = - PathBuf::from(std::env::var("QP_WEB_CONFIG").unwrap_or_else(|_| "qp_web.ron".to_owned())); + let config_path = PathBuf::from( + std::env::var("QP_WEB_CONFIG").unwrap_or_else(|_| "quickpeep.ron".to_owned()), + ); if !config_path.exists() { bail!( diff --git a/quickpeep/src/bin/qp-seedcoll-sort.rs b/quickpeep/src/bin/qp-seedcoll-sort.rs index b24c8fa..c44bfb1 100644 --- a/quickpeep/src/bin/qp-seedcoll-sort.rs +++ b/quickpeep/src/bin/qp-seedcoll-sort.rs @@ -24,8 +24,9 @@ pub async fn main() -> anyhow::Result<()> { ) .init(); - let config_path = - PathBuf::from(std::env::var("QP_WEB_CONFIG").unwrap_or_else(|_| "qp_web.ron".to_owned())); + let config_path = PathBuf::from( + std::env::var("QP_WEB_CONFIG").unwrap_or_else(|_| "quickpeep.ron".to_owned()), + ); if !config_path.exists() { bail!(