Skip to content

Commit 9689801

Browse files
committed
fix clippy warning in package state
1 parent 20f6ab0 commit 9689801

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/core/src/packages/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ fn get_package_without_docker(package: &Package) -> Result<PackageState> {
111111
}
112112

113113
fn get_package_without_docker_at(base: &Path, package: &Package) -> Result<PackageState> {
114-
let config_path = PackageConfigStore::config_file_path(&base, package.name());
114+
let config_path = PackageConfigStore::config_file_path(base, package.name());
115115
let config_present = config_path.exists();
116116

117117
let install = if config_present {

0 commit comments

Comments
 (0)