(commit)
| 36 | }).argv; |
| 37 | |
| 38 | function printSummary(commit) { |
| 39 | const commandPath = relative( |
| 40 | process.env.PWD, |
| 41 | join(__dirname, '../download-experimental-build.js') |
| 42 | ); |
| 43 | |
| 44 | clear(); |
| 45 | |
| 46 | const message = theme` |
| 47 | {caution An experimental build has been downloaded!} |
| 48 | |
| 49 | You can download this build again by running: |
| 50 | {path ${commandPath}} --commit={commit ${commit}} |
| 51 | `; |
| 52 | |
| 53 | console.log(message.replace(/\n +/g, '\n').trim()); |
| 54 | } |
| 55 | |
| 56 | const main = async () => { |
| 57 | const {commit, releaseChannel, noVerify} = argv; |