Merge pull request #2144 from thelounge/xpaw/warn-config-folder

Warn about old config folder
This commit is contained in:
Jérémie Astori 2018-03-03 00:23:38 -05:00 committed by GitHub
commit f9f35fa498
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

View file

@ -35,6 +35,8 @@ if (!fs.existsSync(path.join(
Helper.setHome(process.env.THELOUNGE_HOME || Utils.defaultHome());
Utils.checkOldHome();
// Merge config key-values passed as CLI options into the main config
_.merge(Helper.config, program.config);

View file

@ -20,6 +20,23 @@ class Utils {
].forEach((e) => log.raw(e));
}
// TODO: Remove in a couple of releases
static checkOldHome() {
const currentHome = Helper.getHomePath();
const oldHome = currentHome.replace(/\.thelounge$/, ".lounge");
if (currentHome === oldHome || !fs.existsSync(oldHome)) {
return;
}
console.log(); // eslint-disable-line no-console
log.warn(`Folder ${colors.bold.red(oldHome)} still exists.`);
log.warn(`In v3, we renamed the default configuration folder to ${colors.bold.green(".thelounge")} for consistency.`);
log.warn(`You might want to rename the folder from ${colors.bold.red(".lounge")} to ${colors.bold.green(".thelounge")} to keep existing configuration.`);
log.warn("Make sure to look at the release notes to see other breaking changes.");
console.log(); // eslint-disable-line no-console
}
static defaultHome() {
if (home) {
return home;