From 3b6526eb073c07b07bbd2b1f46b7332414d8865d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=BCchele?= Date: Tue, 11 Sep 2018 07:21:31 -0700 Subject: [PATCH] create .flipper folder Summary: When no config folder exists, a folder named `.sonar` was created. Instead `.flipper` should be created. Reviewed By: hning Differential Revision: D9754717 fbshipit-source-id: 89a7f5c80a9202f448a6bafcf461c941b656c15e --- static/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.js b/static/index.js index 9f18ea279..adc86af17 100644 --- a/static/index.js +++ b/static/index.js @@ -47,7 +47,7 @@ if (fs.existsSync(flipperDir)) { // move .sonar to .flipper fs.renameSync(sonarDir, flipperDir); } else { - fs.mkdirSync(sonarDir); + fs.mkdirSync(flipperDir); } const configPath = path.join(flipperDir, 'config.json');