Skip to content
Snippets Groups Projects
Commit aa5f2928 authored by Christian Kandeler's avatar Christian Kandeler
Browse files

RemoteLinux: Change output at the end of a deploy step.

"Deployment finished" is potentially misleading, as other steps
might follow.

Change-Id: I457b2c2427c65146b48e13bf9323ac11feee18db
Reviewed-on: http://codereview.qt-project.org/4561


Reviewed-by: default avatarChristian Kandeler <christian.kandeler@nokia.com>
parent 3e1ad6f5
No related branches found
No related tags found
No related merge requests found
......@@ -136,9 +136,9 @@ void AbstractRemoteLinuxDeployStep::handleErrorMessage(const QString &message)
void AbstractRemoteLinuxDeployStep::handleFinished()
{
if (m_d->hasError)
emit addOutput(tr("Deployment failed."), ErrorMessageOutput);
emit addOutput(tr("Deploy step failed."), ErrorMessageOutput);
else
emit addOutput(tr("Deployment finished."), MessageOutput);
emit addOutput(tr("Deploy step finished."), MessageOutput);
disconnect(deployService(), 0, this, 0);
m_d->future.reportResult(!m_d->hasError);
emit finished();
......
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