| 140 | } |
| 141 | |
| 142 | QStringList DockerRuntime::workingDirArgs(QProcess* process) const |
| 143 | { |
| 144 | const auto wd = process->workingDirectory(); |
| 145 | return wd.isEmpty() ? QStringList{} : QStringList{QStringLiteral("-w"), pathInRuntime(KDevelop::Path(wd)).toLocalFile()}; |
| 146 | } |
| 147 | |
| 148 | void DockerRuntime::startProcess(QProcess* process) const |
| 149 | { |
nothing calls this directly
no test coverage detected