aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/rsyncdeploystep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/remotelinux/rsyncdeploystep.cpp')
-rw-r--r--src/plugins/remotelinux/rsyncdeploystep.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/remotelinux/rsyncdeploystep.cpp b/src/plugins/remotelinux/rsyncdeploystep.cpp
index 84eb47b8cc..317b08bb77 100644
--- a/src/plugins/remotelinux/rsyncdeploystep.cpp
+++ b/src/plugins/remotelinux/rsyncdeploystep.cpp
@@ -35,8 +35,8 @@ public:
private:
bool isDeploymentNecessary() const final;
Group deployRecipe() final;
- TaskItem mkdirTask();
- TaskItem transferTask();
+ GroupItem mkdirTask();
+ GroupItem transferTask();
mutable FilesToTransfer m_files;
bool m_ignoreMissingFiles = false;
@@ -85,7 +85,7 @@ bool RsyncDeployStep::isDeploymentNecessary() const
return !m_files.empty();
}
-TaskItem RsyncDeployStep::mkdirTask()
+GroupItem RsyncDeployStep::mkdirTask()
{
const auto setupHandler = [this](Process &process) {
QStringList remoteDirs;
@@ -113,7 +113,7 @@ TaskItem RsyncDeployStep::mkdirTask()
return ProcessTask(setupHandler, {}, errorHandler);
}
-TaskItem RsyncDeployStep::transferTask()
+GroupItem RsyncDeployStep::transferTask()
{
const auto setupHandler = [this](FileTransfer &transfer) {
transfer.setTransferMethod(FileTransferMethod::Rsync);