mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-03 12:19:02 +00:00
fix(cli): remove dup. message if already enhanced
This commit is contained in:
parent
9b03b1d9f7
commit
3d7efbef54
27
bin.mjs
27
bin.mjs
@ -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"]) {
|
||||||
|
Loading…
Reference in New Issue
Block a user