From da71098ac98b4e44d5c74cfcd0b384f92f79f163 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Wed, 11 Oct 2023 21:48:47 -0600 Subject: [PATCH] fix: added silly message for new users on 0.14.x --- src/auth.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/auth.ts b/src/auth.ts index 7e3d29b..9709cb1 100644 --- a/src/auth.ts +++ b/src/auth.ts @@ -104,7 +104,13 @@ const migrate = (authFileName = 'auth.json'): Promise => 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))); }); /**