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

Harmattan: Support deploying without packaging.

Won't work out of the box with the default paths from our wizards, but
developers might find the faster turn-around time worth the hassle.

Task-number: QTCREATORBUG-5459
Change-Id: I21dbc67f940f2e68cf07f28568ea35c717abc294
Reviewed-on: http://codereview.qt.nokia.com/1828


Reviewed-by: default avatarChristian Kandeler <christian.kandeler@nokia.com>
parent 33d9772e
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,8 @@ QStringList MaemoDeployStepFactory::availableCreationIds(BuildStepList *parent)
ids << MaemoInstallRpmPackageToSysrootStep::Id;
ids << MaemoUploadAndInstallRpmPackageStep::Id;
}
if (qobject_cast<Qt4HarmattanTarget *>(parent->target()))
ids << MaemoDirectDeviceUploadStep::Id;
if (qobject_cast<Qt4Maemo5Target *>(parent->target())) {
ids << MaemoMountAndInstallDeployStep::Id
<< MaemoMountAndCopyDeployStep::Id;
......
......@@ -217,6 +217,15 @@ void MaemoDirectDeviceUploadStep::handleUploadFinished(Utils::SftpJobId jobId,
setFinished();
} else {
setDeployed(connection()->connectionParameters().host, d);
// Terrible hack for Windows.
if (d.remoteDir.contains(QLatin1String("bin"))) {
const QString remoteFilePath = d.remoteDir + QLatin1Char('/')
+ QFileInfo(d.localFilePath).fileName();
const QString command = QLatin1String("chmod a+x ") + remoteFilePath;
connection()->createRemoteProcess(command.toUtf8())->start();
}
uploadNextFile();
}
}
......
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