Fix Github build (#914)

Summary:
Pull Request resolved: https://github.com/facebook/flipper/pull/914

Fixed Github build I accidentaly broke by a previous diff

Reviewed By: mweststrate

Differential Revision: D20581935

fbshipit-source-id: c14d7e0fe83af79069f8fef432833babf04c59f8
This commit is contained in:
Anton Nikolaev
2020-03-21 15:27:36 -07:00
committed by Facebook GitHub Bot
parent 0b6b5a0582
commit 3cbeaf2642
2 changed files with 3 additions and 3 deletions

View File

@@ -83,7 +83,7 @@ async function startMetroServer(app: Express) {
path.join(pluginsDir, 'fb', 'layout', 'sidebar_extensions'),
path.join(pluginsDir, 'fb', 'mobileconfig'),
path.join(pluginsDir, 'fb', 'watch'),
].filter(fs.pathExists);
].filter(fs.pathExistsSync);
const metroBundlerServer = await Metro.runMetro({
projectRoot: appDir,
watchFolders,