Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
fix(shim): remove incorrect path (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x5459 authored Jun 4, 2024
1 parent 8134615 commit a9a11f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/shim/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl Task {
self.files
.iter()
.map(|name| {
let path = Path::new(workspace).join(&self.id).join(name);
let path = Path::new(workspace).join(name);
(name.as_str(), path)
})
.collect()
Expand Down

0 comments on commit a9a11f7

Please sign in to comment.