We are using updater on V2 of Tauri. It works great on Windows and Mac, but on Ubuntu, we are getting the error:
Permission denied (os error 13)
When we try to update. it was installed with
sudo dpkg i myapp.deb
What do I need to do so that these in app updates can start working for our Linux users?
"plugins": {
"updater": {
"windows": {
"installMode": "passive"
},
"pubkey": "OUR_KEY",
"endpoints": [
"https://OUR_API"
]
}
},