Disable auto-updater (#951)
Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/951 Reviewed By: jknoxville, mweststrate Differential Revision: D20766973 fbshipit-source-id: 93bf659d8944c0cca1b513235aa43ffc32b7ada8
This commit is contained in:
committed by
Facebook GitHub Bot
parent
bf32297ad9
commit
22b3e89ce5
@@ -43,7 +43,7 @@ test('config is decoded from env with defaults', () => {
|
|||||||
pluginPaths: [],
|
pluginPaths: [],
|
||||||
lastWindowPosition: undefined,
|
lastWindowPosition: undefined,
|
||||||
launcherMsg: undefined,
|
launcherMsg: undefined,
|
||||||
updaterEnabled: true,
|
updaterEnabled: false,
|
||||||
screenCapturePath: undefined,
|
screenCapturePath: undefined,
|
||||||
launcherEnabled: true,
|
launcherEnabled: true,
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -36,8 +36,8 @@ export default function config(): ProcessConfig {
|
|||||||
pluginPaths: json.pluginPaths || [],
|
pluginPaths: json.pluginPaths || [],
|
||||||
lastWindowPosition: json.lastWindowPosition,
|
lastWindowPosition: json.lastWindowPosition,
|
||||||
launcherMsg: json.launcherMsg,
|
launcherMsg: json.launcherMsg,
|
||||||
updaterEnabled:
|
// TODO(T64836070): The built-in updater is disabled as we don't have a strategy for signing prod builds right now.
|
||||||
typeof json.updaterEnabled === 'boolean' ? json.updaterEnabled : true,
|
updaterEnabled: false,
|
||||||
screenCapturePath: json.screenCapturePath,
|
screenCapturePath: json.screenCapturePath,
|
||||||
launcherEnabled:
|
launcherEnabled:
|
||||||
typeof json.launcherEnabled === 'boolean' ? json.launcherEnabled : true,
|
typeof json.launcherEnabled === 'boolean' ? json.launcherEnabled : true,
|
||||||
|
|||||||
Reference in New Issue
Block a user