aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/installed_versions.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/installed_versions.rs')
-rw-r--r--crates/shirabe/src/installed_versions.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/installed_versions.rs b/crates/shirabe/src/installed_versions.rs
index fb93172..0e22e06 100644
--- a/crates/shirabe/src/installed_versions.rs
+++ b/crates/shirabe/src/installed_versions.rs
@@ -450,7 +450,7 @@ impl InstalledVersions {
.cloned();
if let Some(cached) = cached {
installed.push(cached);
- } else if is_file(&format!("{}/composer/installed.php", vendor_dir)) {
+ } else if is_file(format!("{}/composer/installed.php", vendor_dir)) {
let required =
require_php_file(&format!("{}/composer/installed.php", vendor_dir));
let required_map: IndexMap<String, PhpMixed> =