We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ANYRUN_PLUGINS
1 parent 5140811 commit e71636fCopy full SHA for e71636f
anyrun/src/main.rs
@@ -252,6 +252,9 @@ impl Component for App {
252
plugin.to_owned()
253
} else {
254
let mut search_dirs = vec![format!("{user_dir}/plugins")];
255
+ if let Ok(path) = env::var("ANYRUN_PLUGINS") {
256
+ search_dirs.push(path);
257
+ }
258
search_dirs.extend(PLUGIN_PATHS.iter().map(|path| path.to_string()));
259
260
// Attempt to load both `<plugin>` and `lib<plugin>.so` from
0 commit comments