Skip to content

Commit 2fad02d

Browse files
Fix index dependencies unzipping from installed mods (#115)
1 parent 82c2205 commit 2fad02d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/project.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ pub fn check_dependencies(
439439
let path_to_dep_geode;
440440
let _geode_info;
441441
match (found_in_installed, found_in_index) {
442-
(Found::Some(inst_path, inst_info), Found::Some(_, _)) => {
442+
(Found::Some(_, _), Found::Some(inst_path, inst_info)) => {
443443
info!("Dependency '{}' found", dep.id);
444444
path_to_dep_geode = inst_path;
445445
_geode_info = inst_info;

0 commit comments

Comments
 (0)