Skip to content

Commit b9b99c2

Browse files
committed
os.rs considers ios
1 parent 6f0499f commit b9b99c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src-tauri/src/os.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#[inline(always)]
22
pub const fn os_label<'a>(macos: &'a str, other: &'a str) -> &'a str {
3-
if cfg!(target_os = "macos") {
3+
if cfg!(any(target_os = "macos", target_os = "ios")) {
44
macos
55
} else {
66
other

0 commit comments

Comments
 (0)