diff --git a/crates/detect-targets/src/detect.rs b/crates/detect-targets/src/detect.rs index 15d8a125..a85e6e07 100644 --- a/crates/detect-targets/src/detect.rs +++ b/crates/detect-targets/src/detect.rs @@ -57,6 +57,8 @@ pub async fn detect_targets() -> Vec { // Linux is a bit special, since the result from `guess_host_triple` // might be wrong about whether glibc or musl is used. linux::detect_targets(target).await + } else { + vec![target] } } }