Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit 4044e5c

Browse files
authored
Fix typo in parameter name and set default value to true. (#3085)
1 parent bb1a544 commit 4044e5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agent/onefuzz/src/az_copy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ async fn retry_az_impl(mode: Mode, src: &OsStr, dst: &OsStr, args: &[&str]) -> R
190190

191191
pub async fn sync(src: impl AsRef<OsStr>, dst: impl AsRef<OsStr>, delete_dst: bool) -> Result<()> {
192192
let args = if delete_dst {
193-
vec!["--delete_destination"]
193+
vec!["--delete-destination=true"]
194194
} else {
195195
vec![]
196196
};

0 commit comments

Comments
 (0)