diff --git a/plugins/updater/src/error.rs b/plugins/updater/src/error.rs index 704c4721..a095eb18 100644 --- a/plugins/updater/src/error.rs +++ b/plugins/updater/src/error.rs @@ -63,7 +63,7 @@ pub enum Error { #[error("temp directory is not on the same mount point as the AppImage")] TempDirNotOnSameMountPoint, #[error("binary for the current target not found in the archive")] - BinaryNotFoundInAcrhive, + BinaryNotFoundInArchive, #[error(transparent)] Http(#[from] http::Error), } diff --git a/plugins/updater/src/updater.rs b/plugins/updater/src/updater.rs index a4d5ef6a..1340c245 100644 --- a/plugins/updater/src/updater.rs +++ b/plugins/updater/src/updater.rs @@ -651,7 +651,7 @@ impl Update { // if we have not returned early we should restore the backup std::fs::rename(tmp_app_image, &self.extract_path)?; - return Err(Error::BinaryNotFoundInAcrhive); + return Err(Error::BinaryNotFoundInArchive); } } }