We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f0499f commit b9b99c2Copy full SHA for b9b99c2
src-tauri/src/os.rs
@@ -1,6 +1,6 @@
1
#[inline(always)]
2
pub const fn os_label<'a>(macos: &'a str, other: &'a str) -> &'a str {
3
- if cfg!(target_os = "macos") {
+ if cfg!(any(target_os = "macos", target_os = "ios")) {
4
macos
5
} else {
6
other
0 commit comments