(command, options)
| 87 | } |
| 88 | |
| 89 | async function execRead(command, options) { |
| 90 | const {stdout} = await exec(command, options); |
| 91 | |
| 92 | return stdout.trim(); |
| 93 | } |
| 94 | |
| 95 | function readSavedBuildMetadata() { |
| 96 | const path = join(BUILD_METADATA_TEMP_DIRECTORY, 'metadata'); |
no test coverage detected