diff --git a/Lang/pt-br.json b/Lang/pt-br.json index 98424fa..ce4912d 100644 --- a/Lang/pt-br.json +++ b/Lang/pt-br.json @@ -2,6 +2,7 @@ "common": { "confirmChar": "s", + "processComplete": "INFO - Processo comcluído!", "errorBatchUpdateRunning": "Você não pode executar essa ação enquanto GRPP update estiver sendo executado!" }, diff --git a/src/lang.ts b/src/lang.ts index 78c32eb..b9da94c 100644 --- a/src/lang.ts +++ b/src/lang.ts @@ -28,6 +28,7 @@ export var langDatabase:any = { "common": { "confirmChar": "y", + "processComplete": "INFO - Process complete!", "errorBatchUpdateRunning": "You can't execute this action while GRPP update is running!" }, diff --git a/src/update.ts b/src/update.ts index 5c88d49..901d5d6 100644 --- a/src/update.ts +++ b/src/update.ts @@ -501,6 +501,10 @@ async function batchUpdateComplete(){ }); + } else { + grpp_displayMainLogo(!0); + createLogEntry(langDatabase.common.processComplete); + process.exit(); } }