Simplify plugin directory scanning (#1910)

This commit is contained in:
Jonathan Turner 2020-05-29 07:14:32 +12:00 committed by GitHub
parent fe01a223a4
commit 3f9871f60d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,13 +110,19 @@ fn search_paths() -> Vec<std::path::PathBuf> {
} }
} }
#[cfg(not(debug_assertions))] if let Ok(config) = crate::data::config::config(Tag::unknown()) {
{ if let Some(plugin_dirs) = config.get("plugin_dirs") {
match env::var_os("PATH") { if let Value {
Some(paths) => { value: UntaggedValue::Table(pipelines),
search_paths.extend(env::split_paths(&paths).collect::<Vec<_>>()); ..
} = plugin_dirs
{
for pipeline in pipelines {
if let Ok(plugin_dir) = pipeline.as_string() {
search_paths.push(PathBuf::from(plugin_dir));
}
}
} }
None => println!("PATH is not defined in the environment."),
} }
} }