forked from qt-creator/qt-creator
Android: Ignore an error when doing an incremental build
Since this is not really an error but it is outputted to stderr, we need to explicitly ignore it so it does not show an error dialog. Change-Id: Ia972cf134278216c317649b5483e3deac683374d Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
This commit is contained in:
@@ -562,7 +562,7 @@ void AndroidDeployQtStep::stdError(const QString &line)
|
|||||||
if (newOutput.startsWith("warning", Qt::CaseInsensitive)
|
if (newOutput.startsWith("warning", Qt::CaseInsensitive)
|
||||||
|| newOutput.startsWith("note", Qt::CaseInsensitive))
|
|| newOutput.startsWith("note", Qt::CaseInsensitive))
|
||||||
TaskHub::addTask(DeploymentTask(Task::Warning, newOutput));
|
TaskHub::addTask(DeploymentTask(Task::Warning, newOutput));
|
||||||
else
|
else if (newOutput != QLatin1String("All files should be loaded. Notifying the device."))
|
||||||
TaskHub::addTask(DeploymentTask(Task::Error, newOutput));
|
TaskHub::addTask(DeploymentTask(Task::Error, newOutput));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user