#Permission denied (os error 13) - Ubuntu

6 messages · Page 1 of 1 (latest)

brazen shore
#

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"
      ]
    }
  },
blissful crag
#

I think the udpater does not support to update when installed via .deb. I think on linux it only supports appimage as of now.

#

I couldn't find a reference to deb in the updater guide and the source code pointed only to appimage

#

when installing via debs it probably makes sense to create your own registry/ppa to allow updating via apt

brazen shore