Skip to content
Snippets Groups Projects
Commit e80a4b96 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

VCS[svn]: Incomplete environment passed to Subversion process.

Fixes breakage introduced by 34982c1f.
Task-number: QTCREATORBUG-1612
Reviewed-by: dt
parent c2a618ae
No related branches found
No related tags found
No related merge requests found
......@@ -1062,7 +1062,7 @@ SubversionResponse SubversionPlugin::runSvn(const QString &workingDir,
Utils::SynchronousProcess process;
if (!workingDir.isEmpty())
process.setWorkingDirectory(workingDir);
QProcessEnvironment env = process.processEnvironment();
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
env.insert(QLatin1String("LANG"), QString(QLatin1Char('C')));
process.setProcessEnvironment(env);
process.setTimeout(timeOut);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment