We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16e0f3e commit 8468213Copy full SHA for 8468213
packages/electron-updater/src/AppUpdater.ts
@@ -86,12 +86,6 @@ export abstract class AppUpdater extends (EventEmitter as new () => TypedEmitter
86
87
disableWebInstaller = false
88
89
- /**
90
- * Install dir for Nsis Updater
91
- *
92
- */
93
- installDirectory: string | null = null
94
-
95
/**
96
* The current application version.
97
*/
packages/electron-updater/src/NsisUpdater.ts
@@ -16,6 +16,13 @@ import { URL } from "url"
16
import { gunzipSync } from "zlib"
17
18
export class NsisUpdater extends BaseUpdater {
19
+ /**
20
+ * Install dir
21
+ *
22
+ */
23
+ installDirectory: string | null = null
24
+
25
26
constructor(options?: AllPublishOptions | null, app?: AppAdapter) {
27
super(options, app)
28
}
0 commit comments