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

Commit 0b931d4

Browse files
committed
bug fix
1 parent 9ce7808 commit 0b931d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/agent/onefuzz-agent/src/work.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ impl WorkSet {
9090

9191
pub fn setup_dir(&self) -> Result<PathBuf> {
9292
let root = self.get_root_folder()?;
93-
self.setup_url.as_path(root.join("blob-containers"))
93+
self.setup_url.as_path(root)
9494
}
9595

9696
pub fn extra_dir(&self) -> Result<Option<PathBuf>> {
9797
let root = self.get_root_folder()?;
9898
self.extra_url
9999
.as_ref()
100-
.map(|url| url.as_path(root.join("blob-containers")))
100+
.map(|url| url.as_path(root))
101101
.transpose()
102102
}
103103
}

0 commit comments

Comments
 (0)