new(basic.gblib): REPORT AND RESET REPORT new keywords @othonlima

This commit is contained in:
Rodrigo Rodriguez 2024-02-22 08:23:45 -03:00
parent 078eb21a8c
commit 8d7b7cb956

View file

@ -843,6 +843,11 @@ export class SystemKeywords {
* *
*/ */
public async save({ pid, file, args }): Promise<any> { public async save({ pid, file, args }): Promise<any> {
if (!args){
return;
}
const { min } = await DialogKeywords.getProcessInfo(pid); const { min } = await DialogKeywords.getProcessInfo(pid);
GBLog.info(`BASIC: Saving '${file}' (SAVE). Args: ${args.join(',')}.`); GBLog.info(`BASIC: Saving '${file}' (SAVE). Args: ${args.join(',')}.`);
let { baseUrl, client } = await GBDeployer.internalGetDriveClient(min); let { baseUrl, client } = await GBDeployer.internalGetDriveClient(min);