fix: added silly message for new users on 0.14.x

This commit is contained in:
Josh Moore 2023-10-11 21:48:47 -06:00
parent 749341cf44
commit da71098ac9
1 changed files with 7 additions and 1 deletions

View File

@ -104,7 +104,13 @@ const migrate = (authFileName = 'auth.json'): Promise<Users> => new Promise(asyn
// We did it hoofuckingray
.then(() => log.success('Migrated all auth & file data to new auth system'))
.then(() => resolve(newUsers))
.catch(reject);
.catch((err) => (
log.blank().blank().blank()
.info('READ THIS', 'If you see this after installation, please run ass once again before asking for help. This error will automatically fix itself.')
.blank()
.info('Hey you', 'Read that message ^^')
.blank().blank().blank(),
reject(err)));
});
/**