Update qp-seedcoll* to use quickpeep.ron instead of qp_web.ron
like all the other utilities
This commit is contained in:
parent
402135a6fa
commit
20d9fb956a
|
@ -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!(
|
||||
|
|
|
@ -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!(
|
||||
|
|
Loading…
Reference in New Issue