fix(cli): remove dup. message if already enhanced

This commit is contained in:
dragonwocky 2024-04-21 17:01:30 +10:00
parent 9b03b1d9f7
commit 3d7efbef54
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

27
bin.mjs
View File

@ -252,21 +252,18 @@ try {
} }
}, },
compareVersions = async () => { compareVersions = async () => {
if (insertVersion === manifest.version) { if (!insertVersion) return INCOMPLETE;
// same version already applied // same version already applied
print` {grey * ${messages["notion-found"]}}\n`; if (insertVersion === manifest.version) return SUCCESS;
return SUCCESS; // diff version already applied
} else if (insertVersion) { print` {grey * ${messages["notion-found"]}}\n`;
// diff version already applied const replace = await promptConfirmation(messages["update-confirm"]);
print` {grey * ${messages["notion-found"]}}\n`; print`\n`;
const replace = await promptConfirmation(messages["update-confirm"]); return ["Y", "y"].includes(replace)
print`\n`; ? (await interactiveRestore()) === SUCCESS
return ["Y", "y"].includes(replace) ? INCOMPLETE
? (await interactiveRestore()) === SUCCESS : FAILURE
? INCOMPLETE : CANCELLED;
: FAILURE
: CANCELLED;
} else return INCOMPLETE;
}, },
interactiveEnhance = async () => { interactiveEnhance = async () => {
if (!args["--no-backup"]) { if (!args["--no-backup"]) {