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! :)")?,
|
.context("Must specify output file as arg № 1! :)")?,
|
||||||
);
|
);
|
||||||
|
|
||||||
let config_path =
|
let config_path = PathBuf::from(
|
||||||
PathBuf::from(std::env::var("QP_WEB_CONFIG").unwrap_or_else(|_| "qp_web.ron".to_owned()));
|
std::env::var("QP_WEB_CONFIG").unwrap_or_else(|_| "quickpeep.ron".to_owned()),
|
||||||
|
);
|
||||||
|
|
||||||
if !config_path.exists() {
|
if !config_path.exists() {
|
||||||
bail!(
|
bail!(
|
||||||
|
|
|
@ -24,8 +24,9 @@ pub async fn main() -> anyhow::Result<()> {
|
||||||
)
|
)
|
||||||
.init();
|
.init();
|
||||||
|
|
||||||
let config_path =
|
let config_path = PathBuf::from(
|
||||||
PathBuf::from(std::env::var("QP_WEB_CONFIG").unwrap_or_else(|_| "qp_web.ron".to_owned()));
|
std::env::var("QP_WEB_CONFIG").unwrap_or_else(|_| "quickpeep.ron".to_owned()),
|
||||||
|
);
|
||||||
|
|
||||||
if !config_path.exists() {
|
if !config_path.exists() {
|
||||||
bail!(
|
bail!(
|
||||||
|
|
Loading…
Reference in New Issue