| 128 | } |
| 129 | |
| 130 | QString CraftRuntime::findExecutable(const QString& executableName) const |
| 131 | { |
| 132 | auto runtimePaths = QString::fromLocal8Bit(getenv(QByteArrayLiteral("PATH"))).split(QLatin1Char(':')); |
| 133 | |
| 134 | return QStandardPaths::findExecutable(executableName, runtimePaths); |
| 135 | } |
| 136 | |
| 137 | Path CraftRuntime::pathInHost(const Path& runtimePath) const |
| 138 | { |
no test coverage detected