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

View File

@ -252,11 +252,9 @@ 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;
} else if (insertVersion) {
// diff version already applied // diff version already applied
print` {grey * ${messages["notion-found"]}}\n`; print` {grey * ${messages["notion-found"]}}\n`;
const replace = await promptConfirmation(messages["update-confirm"]); const replace = await promptConfirmation(messages["update-confirm"]);
@ -266,7 +264,6 @@ try {
? INCOMPLETE ? INCOMPLETE
: FAILURE : FAILURE
: CANCELLED; : CANCELLED;
} else return INCOMPLETE;
}, },
interactiveEnhance = async () => { interactiveEnhance = async () => {
if (!args["--no-backup"]) { if (!args["--no-backup"]) {