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.
1 parent 6a1b8b9 commit ef33488Copy full SHA for ef33488
plugins/src/scripts/mod.rs
@@ -109,7 +109,10 @@ impl App {
109
.join(LOCAL_PATH),
110
);
111
queue.push_back(Path::new(SYSTEM_ADMIN_PATH).to_owned());
112
- queue.push_back(Path::new(DISTRIBUTION_PATH).to_owned());
+ queue.push_back(
113
+ Path::new(option_env!("POP_LAUNCHER_PLUGIN_DIR").unwrap_or(DISTRIBUTION_PATH))
114
+ .to_owned(),
115
+ );
116
117
let script_sender = async move {
118
while let Some(path) = queue.pop_front() {
0 commit comments