Fix: Test the RTP itself as well
This fixes the problem that the user sometimes passes the configuration via the commandline. In this case, the "rtp" variable itself is the configuration file path. With this fix applied, we check this value before generating the variants and trying them.
This commit is contained in:
parent
ac89856e1c
commit
d50f8b3d0d
1 changed files with 1 additions and 0 deletions
|
@ -143,6 +143,7 @@ fn fetch_config(rtp: &PathBuf) -> Result<Value> {
|
|||
};
|
||||
|
||||
vec![
|
||||
vec![rtp.clone()],
|
||||
gen_vars(rtp.clone(), variants.clone(), &modifier),
|
||||
|
||||
env::var("HOME").map(|home| gen_vars(PathBuf::from(home), variants.clone(), &modifier))
|
||||
|
|
Loading…
Reference in a new issue