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

Commit

Permalink
Fix typo in parameter name and set default value to true. (#3085)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreisen authored May 4, 2023
1 parent bb1a544 commit 4044e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent/onefuzz/src/az_copy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ async fn retry_az_impl(mode: Mode, src: &OsStr, dst: &OsStr, args: &[&str]) -> R

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

0 comments on commit 4044e5c

Please sign in to comment.