()
| 78 | } |
| 79 | |
| 80 | checkForUpdates() { |
| 81 | req(this.url).then(([ r, b ]) => { |
| 82 | if (r.statusCode === 204) return this.emit('update-not-available'); |
| 83 | |
| 84 | this.emit('update-manually', b); |
| 85 | }); |
| 86 | } |
| 87 | |
| 88 | quitAndInstall() { |
| 89 | app.relaunch(); |
no test coverage detected