From f8e30db5ae44f9795fc57a27baae52d7f9f99fc4 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Thu, 22 Feb 2024 08:23:45 -0300 Subject: [PATCH] new(basic.gblib): REPORT AND RESET REPORT new keywords @othonlima --- packages/basic.gblib/services/SystemKeywords.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/basic.gblib/services/SystemKeywords.ts b/packages/basic.gblib/services/SystemKeywords.ts index 6b151f348..22c8cbfe7 100644 --- a/packages/basic.gblib/services/SystemKeywords.ts +++ b/packages/basic.gblib/services/SystemKeywords.ts @@ -843,6 +843,11 @@ export class SystemKeywords { * */ public async save({ pid, file, args }): Promise { + + if (!args){ + return; + } + const { min } = await DialogKeywords.getProcessInfo(pid); GBLog.info(`BASIC: Saving '${file}' (SAVE). Args: ${args.join(',')}.`); let { baseUrl, client } = await GBDeployer.internalGetDriveClient(min);