diff --git a/packages/basic.gblib/services/SystemKeywords.ts b/packages/basic.gblib/services/SystemKeywords.ts index 6b151f34..22c8cbfe 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);