(command, options)
| 42 | }; |
| 43 | |
| 44 | const execRead = async (command, options) => { |
| 45 | const {stdout} = await exec(command, options); |
| 46 | |
| 47 | return stdout.trim(); |
| 48 | }; |
| 49 | |
| 50 | const extractCommitFromVersionNumber = version => { |
| 51 | // Support stable version format e.g. "0.0.0-0e526bcec-20210202" |
no test coverage detected