We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8c1cb2 commit f2a6b91Copy full SHA for f2a6b91
plugins/updater/src/updater.rs
@@ -1271,8 +1271,9 @@ impl Update {
1271
}
1272
1273
1274
-/// Gets the base target string used by the updater. If bundle type infromation is available it
+/// Gets the base target string used by the updater. If bundle type is available it
1275
/// will be added to this string when selecting the download URL and signature.
1276
+/// `tauri::utils::platform::bundle_type` method is used to obtain current bundle type.
1277
pub fn target() -> Option<String> {
1278
if let (Some(target), Some(arch)) = (updater_os(), updater_arch()) {
1279
Some(format!("{target}-{arch}"))
0 commit comments