forked from qt-creator/qt-creator
Actually get the exit code from package creation and signing
This commit is contained in:
@@ -499,7 +499,7 @@ void S60DeviceRunControl::makesisProcessFailed()
|
|||||||
|
|
||||||
void S60DeviceRunControl::makesisProcessFinished()
|
void S60DeviceRunControl::makesisProcessFinished()
|
||||||
{
|
{
|
||||||
if (m_makesis->exitStatus() != 0) {
|
if (m_makesis->exitCode() != 0) {
|
||||||
error(this, tr("An error occurred while creating the package."));
|
error(this, tr("An error occurred while creating the package."));
|
||||||
emit finished();
|
emit finished();
|
||||||
return;
|
return;
|
||||||
@@ -527,7 +527,7 @@ void S60DeviceRunControl::signsisProcessFailed()
|
|||||||
|
|
||||||
void S60DeviceRunControl::signsisProcessFinished()
|
void S60DeviceRunControl::signsisProcessFinished()
|
||||||
{
|
{
|
||||||
if (m_signsis->exitStatus() != 0) {
|
if (m_signsis->exitCode() != 0) {
|
||||||
error(this, tr("An error occurred while creating the package."));
|
error(this, tr("An error occurred while creating the package."));
|
||||||
emit finished();
|
emit finished();
|
||||||
return;
|
return;
|
||||||
@@ -547,7 +547,7 @@ void S60DeviceRunControl::installProcessFailed()
|
|||||||
|
|
||||||
void S60DeviceRunControl::installProcessFinished()
|
void S60DeviceRunControl::installProcessFinished()
|
||||||
{
|
{
|
||||||
if (m_install->exitStatus() != 0) {
|
if (m_install->exitCode() != 0) {
|
||||||
error(this, tr("An error occurred while creating the package."));
|
error(this, tr("An error occurred while creating the package."));
|
||||||
}
|
}
|
||||||
emit addToOutputWindow(this, tr("Finished."));
|
emit addToOutputWindow(this, tr("Finished."));
|
||||||
|
|||||||
Reference in New Issue
Block a user