(args: Record<string, any>)
| 10 | |
| 11 | // Taken from airnode-deployer |
| 12 | const longArguments = (args: Record<string, any>) => { |
| 13 | return JSON.stringify(omitBy(args, (_, arg) => arg === '$0' || arg.length === 1)); |
| 14 | }; |
| 15 | |
| 16 | const handleCliCommand = (result: GoResult<void, Error>) => { |
| 17 | if (!result.success) { |