yazi/yazi-boot/src/actions/triple.rs
2024-11-10 22:58:47 +08:00

12 lines
197 B
Rust

use super::Actions;
impl Actions {
pub(super) fn triple() -> String {
format!(
"{} ({}-{})",
env!("VERGEN_RUSTC_HOST_TRIPLE"),
std::env::consts::OS,
std::env::consts::ARCH
)
}
}