diff options
author | Eike Ziller <[email protected]> | 2025-03-11 12:55:43 +0100 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2025-03-12 07:12:33 +0000 |
commit | f3061f5bc8b1ac230f3b697e3f4ee77feaa77020 (patch) | |
tree | bac72b01ca6655c83b495ee6688f0deb7fdc3048 | |
parent | 2109a4ad5747cc4e056aa5a0a57a1c5dc0ca984b (diff) |
Do not show "downgraded deployment method" in error style
It is an interesting message in case the user misconfigured something,
but in cases where this is expected, like Boot2Qt on macOS where the
Docker build device does not support rsync or sftp, it is rather
confusing if this looks like an error.
Task-number: QTCREATORBUG-30831
Change-Id: I8f9be849c5c409189f3f7dea266b926aa23928e0
Reviewed-by: hjk <[email protected]>
-rw-r--r-- | src/plugins/remotelinux/genericdeploystep.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/plugins/remotelinux/genericdeploystep.cpp b/src/plugins/remotelinux/genericdeploystep.cpp index b1faf9c6b39..706d60cd12e 100644 --- a/src/plugins/remotelinux/genericdeploystep.cpp +++ b/src/plugins/remotelinux/genericdeploystep.cpp @@ -156,10 +156,7 @@ GroupItem GenericDeployStep::transferTask(const Storage<FilesToTransfer> &storag .arg(FileTransfer::transferMethodName(preferredTransferMethod), FileTransfer::transferMethodName(transferMethod), deviceConfiguration()->displayName()); - if (transferMethod == FileTransferMethod::GenericCopy) - addWarningMessage(message); - else - addProgressMessage(message); + addProgressMessage(message); m_emittedDowngradeWarning = true; } transfer.setTransferMethod(transferMethod); |