We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 281a05e commit 8cca0f0Copy full SHA for 8cca0f0
gauntlet/packages/gauntlet-serum-multisig/src/index.ts
@@ -24,7 +24,9 @@ export const multisigCommands = {
24
)[0]
25
26
const result = await executeCLI(multisigCommands, networkPath)
27
- io.saveJSON(result, 'report')
+ if (result) {
28
+ io.saveJSON(result, process.env['REPORT_NAME'] ? process.env['REPORT_NAME'] : 'report')
29
+ }
30
} catch (e) {
31
console.log(e)
32
console.log('Solana Command execution error', e.message)
0 commit comments