Hello! Attempting to implement passive mode for the updater from what I've been able to gleam over from https://github.com/tauri-apps/tauri/pull/6998.
The updater is being triggered by system events and correctly sees and attempts to install the update. However, the updater is still requiring user interaction to install the update even though the installer mode is set to passive.
Still pretty new with Tauri so am I doing something incorrect here with the updater? Tried this with and without the manually setting the installer args to no avail. Here's the relevant sections from my tauri.conf.json file:
"bundle": {
"windows": {
"nsis": {
"installMode": "currentUser"
}
}
},
"updater": {
"active": true,
"dialog": false,
"endpoints": ["{{ENDPOINT_URL}}"],
"pubkey": "{{PUB_KEY}}",
"windows": {
"installMode": "passive",
"installerArgs": ["/P", "/R"]
}
}