mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
Print path to libyabridge.so in yabridgectl status
This commit is contained in:
@@ -125,7 +125,14 @@ fn show_status(config: &Config) {
|
|||||||
.yabridge_home
|
.yabridge_home
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.map(|path| format!("'{}'", path.display()))
|
.map(|path| format!("'{}'", path.display()))
|
||||||
.unwrap_or(String::from("<auto>"))
|
.unwrap_or_else(|| String::from("<auto>"))
|
||||||
|
);
|
||||||
|
println!(
|
||||||
|
"libyabridge.so: {}",
|
||||||
|
config
|
||||||
|
.libyabridge()
|
||||||
|
.map(|path| format!("'{}'", path.display()))
|
||||||
|
.unwrap_or_else(|_| format!("{}", "<not found>".red()))
|
||||||
);
|
);
|
||||||
println!("installation method: {}", config.method);
|
println!("installation method: {}", config.method);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user