| 213 | } |
| 214 | |
| 215 | void InstallScriptRunner::printResult(std::size_t n, std::size_t total) |
| 216 | { |
| 217 | cmSystemTools::Stdout(cmStrCat('[', n, '/', total, "] ", this->name, '\n')); |
| 218 | for (auto const& line : this->output) { |
| 219 | cmSystemTools::Stdout(line); |
| 220 | } |
| 221 | } |