(command, forwardedArgs)
| 42 | } |
| 43 | |
| 44 | function dynamicAttempts (command, forwardedArgs) { |
| 45 | if (command === 'vlt') { |
| 46 | return [ |
| 47 | ['dotenvx-armor', forwardedArgs], |
| 48 | ['dotenvx-ops', forwardedArgs] |
| 49 | ] |
| 50 | } |
| 51 | |
| 52 | if (command === 'ops') { |
| 53 | return [ |
| 54 | ['dotenvx-armor', forwardedArgs], |
| 55 | ['dotenvx-ops', forwardedArgs] |
| 56 | ] |
| 57 | } |
| 58 | |
| 59 | return [[`dotenvx-${command}`, forwardedArgs]] |
| 60 | } |
| 61 | |
| 62 | function executeDynamic (program, command, rawArgs) { |
| 63 | if (!command) { |
no outgoing calls
no test coverage detected
searching dependent graphs…