From a156c511da185fbf3bfd7fc58276f7ded7e54074 Mon Sep 17 00:00:00 2001 From: marodev Date: Sun, 16 May 2021 09:12:00 +0200 Subject: Reorder parameters of previously wrongly refactored string interpolation --- Duplicati/Library/Backend/Rclone/Rclone.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Duplicati/Library/Backend/Rclone/Rclone.cs') diff --git a/Duplicati/Library/Backend/Rclone/Rclone.cs b/Duplicati/Library/Backend/Rclone/Rclone.cs index 024d7e648..97804dd58 100644 --- a/Duplicati/Library/Backend/Rclone/Rclone.cs +++ b/Duplicati/Library/Backend/Rclone/Rclone.cs @@ -249,7 +249,7 @@ namespace Duplicati.Library.Backend { try { - RcloneCommandExecuter(rclone_executable, $"copyto {local_repo}:{filename} {remote_repo}:{Path.Combine(this.remote_path, remotename)}", CancellationToken.None).Await(); + RcloneCommandExecuter(rclone_executable, $"copyto {remote_repo}:{Path.Combine(this.remote_path, remotename)} {local_repo}:{filename}", CancellationToken.None).Await(); } catch (FolderMissingException ex) { throw new FileMissingException(ex); -- cgit v1.2.3