From 19314e00eaea2311248008c7c8e1c326480b42ef Mon Sep 17 00:00:00 2001 From: 409 Date: Wed, 22 May 2024 04:11:59 +0200 Subject: [PATCH] fix: remove /usr/local from executables --- src/executables.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/executables.rs b/src/executables.rs index b090224..019bcba 100644 --- a/src/executables.rs +++ b/src/executables.rs @@ -3,7 +3,6 @@ use std::{error::Error, fs, path::Path}; pub fn get_executables() -> Result, Box> { let mut executables: Vec = Vec::new(); - get_files(Path::new("/usr/local"), &mut executables)?; get_files(Path::new("/bin"), &mut executables)?; match home::cargo_home() { Ok(cargo_home) => {