Provide clearer message about launcher delegation (#373)

Summary:
To make it more obvious how to disable this if unwanted (e.g. when
testing local builds).
Pull Request resolved: https://github.com/facebook/flipper/pull/373

Reviewed By: jknoxville

Differential Revision: D14130771

Pulled By: passy

fbshipit-source-id: 82c83c1ad14737c8c7791de71a1ee23fcea5ec18
This commit is contained in:
Pascal Hartig
2019-02-19 03:21:34 -08:00
committed by Facebook Github Bot
parent 5ad41b48ff
commit e53f8fa98d

View File

@@ -35,6 +35,9 @@ const startLauncher = () => {
module.exports = function(argv) { module.exports = function(argv) {
if (argv.launcher && isProduction() && isLauncherInstalled()) { if (argv.launcher && isProduction() && isLauncherInstalled()) {
console.warn('Delegating to Flipper Launcher ...'); console.warn('Delegating to Flipper Launcher ...');
console.warn(
`You can disable this behavior by passing '--no-launcher' at startup.`,
);
startLauncher(); startLauncher();
process.exit(0); process.exit(0);
} }