forked from qt-creator/qt-creator
Utils: Encourage marking of raw command line parameters
Change-Id: Id66ac07732c66ab8c1232fe1f58042de8a61abb0 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -213,7 +213,9 @@ void AbstractProcessStep::doRun()
|
||||
}
|
||||
}
|
||||
|
||||
const CommandLine effectiveCommand{d->m_param.effectiveCommand(), d->m_param.effectiveArguments()};
|
||||
const CommandLine effectiveCommand(d->m_param.effectiveCommand(),
|
||||
d->m_param.effectiveArguments(),
|
||||
CommandLine::Raw);
|
||||
if (!effectiveCommand.executable().exists()) {
|
||||
processStartupFailed();
|
||||
finish(false);
|
||||
|
||||
Reference in New Issue
Block a user