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
log::warn!("Failed to add bundler type to the binary: {e}. Updater plugin may not be able to update this package. This shouldn't normally happen, please report it to https://github.com/tauri-apps/tauri/issues");
120
135
}
121
136
122
137
// sign main binary for every package type after patch
Copy file name to clipboardExpand all lines: crates/tauri-bundler/src/error.rs
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -99,19 +99,13 @@ pub enum Error {
99
99
#[error("Wrong package type {0} for platform {1}")]
100
100
InvalidPackageType(String,String),
101
101
/// Bundle type symbol missing in binary
102
-
#[cfg_attr(
103
-
target_os = "linux",
104
-
error("__TAURI_BUNDLE_TYPE variable not found in binary. Make sure tauri crate and tauri-cli are up to date and that symbol stripping is disabled (https://doc.rust-lang.org/cargo/reference/profiles.html#strip)")
105
-
)]
106
-
#[cfg_attr(
107
-
not(target_os = "linux"),
108
-
error("__TAURI_BUNDLE_TYPE variable not found in binary. Make sure tauri crate and tauri-cli are up to date")
109
-
)]
102
+
#[error("__TAURI_BUNDLE_TYPE variable not found in binary. Make sure tauri crate and tauri-cli are up to date")]
110
103
MissingBundleTypeVar,
111
104
/// Failed to write binary file changed
112
105
#[error("Failed to write binary file changes: `{0}`")]
113
106
BinaryWriteError(String),
114
107
/// Invalid offset while patching binary file
108
+
#[deprecated]
115
109
#[error("Invalid offset while patching binary file")]
0 commit comments