Remove print

This commit is contained in:
Javier Feliz 2025-09-06 00:46:36 -04:00
parent bf443a27fd
commit dc0a761c96

View File

@ -31,8 +31,6 @@ impl LauncherListItem for ProjectEntry {
String::from("vscode") String::from("vscode")
}, },
execute: { execute: {
println!("Executing: {}", self.path.display());
// Use xdg-open directly since it works properly with music files // Use xdg-open directly since it works properly with music files
match Command::new("code").arg("-n").arg(&self.path).spawn() { match Command::new("code").arg("-n").arg(&self.path).spawn() {
Ok(_) => { Ok(_) => {