We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a848e18 commit 78e60e6Copy full SHA for 78e60e6
2 files changed
plugins/updater/src/error.rs
@@ -63,7 +63,7 @@ pub enum Error {
63
#[error("temp directory is not on the same mount point as the AppImage")]
64
TempDirNotOnSameMountPoint,
65
#[error("binary for the current target not found in the archive")]
66
- BinaryNotFoundInAcrhive,
+ BinaryNotFoundInArchive,
67
#[error(transparent)]
68
Http(#[from] http::Error),
69
}
plugins/updater/src/updater.rs
@@ -651,7 +651,7 @@ impl Update {
651
// if we have not returned early we should restore the backup
652
std::fs::rename(tmp_app_image, &self.extract_path)?;
653
654
- return Err(Error::BinaryNotFoundInAcrhive);
+ return Err(Error::BinaryNotFoundInArchive);
655
656
657
0 commit comments