aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/repository')
-rw-r--r--crates/shirabe/src/repository/path_repository.rs10
1 files changed, 3 insertions, 7 deletions
diff --git a/crates/shirabe/src/repository/path_repository.rs b/crates/shirabe/src/repository/path_repository.rs
index 1a4cf6f..2f99ceb 100644
--- a/crates/shirabe/src/repository/path_repository.rs
+++ b/crates/shirabe/src/repository/path_repository.rs
@@ -250,12 +250,12 @@ impl PathRepository {
let code1 = self
.process
.borrow_mut()
- .execute(cmd.clone(), Some(&mut ref1), Some(path.as_str()))
+ .execute(cmd.clone(), &mut ref1, Some(path.as_str()))
.unwrap_or(1);
let code2 = self
.process
.borrow_mut()
- .execute(cmd, Some(&mut ref2), None)
+ .execute(cmd, &mut ref2, None)
.unwrap_or(1);
if code1 == 0 && code2 == 0 && ref1.as_string() == ref2.as_string() {
package.insert(
@@ -280,11 +280,7 @@ impl PathRepository {
&& self
.process
.borrow_mut()
- .execute(
- PhpMixed::from(command),
- Some(&mut output),
- Some(path.as_str()),
- )
+ .execute(PhpMixed::from(command), &mut output, Some(path.as_str()))
.unwrap_or(1)
== 0
{