mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
12 lines
197 B
Rust
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
|
|
)
|
|
}
|
|
}
|