()
| 126 | } |
| 127 | |
| 128 | validateExampleName() { |
| 129 | if (this.shouldExit()) return; |
| 130 | if (this.exampleName in EXAMPLES) return; |
| 131 | this.exit( |
| 132 | g.f( |
| 133 | 'Invalid example name: %s\n' + |
| 134 | 'Run "lb4 example --help" to print the list of available example names.', |
| 135 | this.exampleName, |
| 136 | ), |
| 137 | ); |
| 138 | } |
| 139 | |
| 140 | async downloadAndExtract() { |
| 141 | if (this.shouldExit()) return false; |
nothing calls this directly
no test coverage detected