From 20d9fb956ac4a9773951a3fc1d4732df0c14dca2 Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Sat, 26 Nov 2022 17:19:31 +0000 Subject: [PATCH] Update qp-seedcoll* to use quickpeep.ron instead of qp_web.ron like all the other utilities --- quickpeep/src/bin/qp-seedcoll-dump.rs | 5 +++-- quickpeep/src/bin/qp-seedcoll-sort.rs | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) 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!(