Skip to content

Commit

Permalink
rclone backend should honor advanced options (see duplicati#3124)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruceforce committed Apr 5, 2018
1 parent e738d92 commit 3c9f594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Duplicati/Library/Backend/Rclone/Rclone.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private string RcloneCommandExecuter(String command, String arguments)

ProcessStartInfo psi = new ProcessStartInfo
{
Arguments = arguments,
Arguments = String.Format("{0} {1}", arguments, opt_rclone),
CreateNoWindow = true,
FileName = command,
RedirectStandardError = true,
Expand Down

0 comments on commit 3c9f594

Please sign in to comment.