Update qp-seedcoll* to use quickpeep.ron instead of qp_web.ron

like all the other utilities
This commit is contained in:
Olivier 'reivilibre' 2022-11-26 17:19:31 +00:00
parent 402135a6fa
commit 20d9fb956a
2 changed files with 6 additions and 4 deletions

View File

@ -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!(

View File

@ -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!(