rename ~/.sonar to ~/.flipper

Summary: renames config folder from sonar to flipper

Reviewed By: jknoxville

Differential Revision: D9541803

fbshipit-source-id: ef378c46fcbb14e76e99fb0743a99f24c536a434
This commit is contained in:
Daniel Büchele
2018-08-29 02:29:14 -07:00
committed by Facebook Github Bot
parent 2596e7d42a
commit f7606c8d59
6 changed files with 15 additions and 9 deletions

View File

@@ -38,13 +38,19 @@ if (process.platform === 'darwin') {
}
}
// ensure .sonar folder and config exist
// ensure .flipper folder and config exist
const sonarDir = path.join(os.homedir(), '.sonar');
if (!fs.existsSync(sonarDir)) {
const flipperDir = path.join(os.homedir(), '.flipper');
if (fs.existsSync(flipperDir)) {
// nothing to do
} else if (fs.existsSync(sonarDir)) {
// move .sonar to .flipper
fs.renameSync(sonarDir, flipperDir);
} else {
fs.mkdirSync(sonarDir);
}
const configPath = path.join(sonarDir, 'config.json');
const configPath = path.join(flipperDir, 'config.json');
let config = {pluginPaths: [], disabledPlugins: [], lastWindowPosition: {}};
try {
@@ -88,7 +94,7 @@ compilePlugins(
}
},
pluginPaths,
path.join(require('os').homedir(), '.sonar', 'plugins'),
path.join(flipperDir, 'plugins'),
).then(dynamicPlugins => {
process.env.PLUGINS = JSON.stringify(dynamicPlugins);
pluginsCompiled = true;