Unhandled Promise Rejection: Cannot run updater on this Linux package. Currently only an AppImage can be updated. #6201
Unanswered
prajwalscodestack
asked this question in
Q&A
Replies: 1 comment
-
In what context?
That's a bit tricky to triage. I guess for a start you could modify your main.rs file to log updater events. something like this fn main() {
let app = tauri::Builder::default()
.build()
.expcet("error building tauri app");
app.run(|_app_handle, event| {
if let tauri::RunEvent::Updater(event) = event {
dbg!(event);
}
}
} (you need to start the appimage from inside a terminal so that you can see the log output) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am getting this error in the console.
Also after running the app image of Tauri application, it is not installing the updates and not showing any notifications.
But the server received the request.
please help
Beta Was this translation helpful? Give feedback.
All reactions