1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 00:24:12 +02:00

Try not setting PWD on QProcess on windows

This commit is contained in:
Leo Franchi
2012-06-22 10:28:54 -03:00
parent 9c8807302b
commit f35ca66fb7

View File

@@ -443,8 +443,10 @@ void ScriptResolver::startProcess()
if( interpreter.isEmpty() )
{
#ifndef Q_OS_WIN
const QFileInfo info( runPath );
m_proc.setWorkingDirectory( info.absolutePath() );
#endif
m_proc.start( runPath );
}
else