| 53 | |
| 54 | bool makeExecutable(const QString& path) { |
| 55 | struct stat fileStat{}; |
| 56 | |
| 57 | if (stat(path.toStdString().c_str(), &fileStat) != 0) { |
| 58 | std::cerr << "Failed to call stat() on " << path.toStdString() << std::endl; |
no outgoing calls
no test coverage detected