You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/tauri-cli/src/build.rs
+6-14Lines changed: 6 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -151,21 +151,13 @@ pub fn setup(
151
151
}
152
152
153
153
if config_.identifier.ends_with(".app"){
154
-
ifcfg!(target_os = "macos"){
155
-
log::error!(
156
-
"The bundle identifier \"{}\" set in `{} identifier` must not end with `.app` on macOS because it conflicts with the application bundle extension.",
157
-
config_.identifier,
158
-
bundle_identifier_source
159
-
);
160
-
std::process::exit(1);
161
-
}else{
162
-
log::warn!(
163
-
"The bundle identifier \"{}\" set in `{} identifier` ends with `.app`. This is not recommended because it conflicts with the application bundle extension on macOS.",
164
-
config_.identifier,
165
-
bundle_identifier_source
166
-
);
167
-
}
154
+
log::warn!(
155
+
"The bundle identifier \"{}\" set in `{} identifier` ends with `.app`. This is not recommended because it conflicts with the application bundle extension on macOS.",
0 commit comments