fix(updater): fix appimage extraction (#784)

* fix updater on linux

* review changes

* Apply suggestions from code review

* change file

---------

Co-authored-by: Kris Krolak <krzysiek.krolak@gmail.com>
This commit is contained in:
kris-ava
2023-11-30 12:46:02 -06:00
committed by GitHub
parent 2e2c0a1b95
commit e7c72c9816
4 changed files with 14 additions and 3 deletions
+2
View File
@@ -62,6 +62,8 @@ pub enum Error {
/// Temp dir is not on same mount mount. This prevents our updater to rename the AppImage to a temp file.
#[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,
#[error(transparent)]
Http(#[from] http::Error),
}