()
| 240 | } |
| 241 | |
| 242 | export function cargoLambdaVersion(): boolean | undefined { |
| 243 | try { |
| 244 | const cargo = spawnSync('cargo', ['lambda', '--version']); |
| 245 | return cargo.status !== 0 || cargo.error ? undefined : true; |
| 246 | } catch (err) { |
| 247 | return undefined; |
| 248 | } |
| 249 | } |
no outgoing calls
no test coverage detected