Skip to content

Commit d10f014

Browse files
fix(clippy): YOu WOULDn't CLONE a bOOL
1 parent c96fcb7 commit d10f014

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/commands/dev.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ impl Dev {
153153
Build::new(
154154
self.project_root.clone(),
155155
self.config_path.clone(),
156-
self.cached.clone(),
156+
self.cached,
157157
)
158158
.run()?;
159159
}
@@ -197,7 +197,7 @@ impl Dev {
197197
Build::new(
198198
self.project_root.clone(),
199199
self.config_path.clone(),
200-
self.cached.clone(),
200+
self.cached,
201201
)
202202
.run()
203203
.unwrap();

0 commit comments

Comments
 (0)