From d50f8b3d0d94df174229c7c0e00753d57fcb9707 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 28 May 2016 23:03:04 +0200 Subject: [PATCH] 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. --- libimagrt/src/configuration.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/libimagrt/src/configuration.rs b/libimagrt/src/configuration.rs index c3cb9735..a2ee1fed 100644 --- a/libimagrt/src/configuration.rs +++ b/libimagrt/src/configuration.rs @@ -143,6 +143,7 @@ fn fetch_config(rtp: &PathBuf) -> Result { }; vec![ + vec![rtp.clone()], gen_vars(rtp.clone(), variants.clone(), &modifier), env::var("HOME").map(|home| gen_vars(PathBuf::from(home), variants.clone(), &modifier))