Skip to content

Commit 55ff5f8

Browse files
fix: ci compile
1 parent cea8121 commit 55ff5f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ fn get_installed_mods_sync(mods_folder_path: String) -> Vec<LocalMod> {
135135
let entry = entry.unwrap();
136136
let res: anyhow::Result<_> = try {
137137
let yaml = if entry.file_type().unwrap().is_dir() {
138-
let cache_path = entry.path().read_dir()?.find(|v| {
138+
let cache_path = entry.path().read_dir().unwrap().find(|v| {
139139
v.as_ref()
140140
.map(|v| {
141141
let name = v.file_name().to_string_lossy().to_string().to_lowercase();

0 commit comments

Comments
 (0)