Skip to content

Commit 2b355b7

Browse files
fix: use classes.jar to determine the extension's base dir
1 parent 1084453 commit 2b355b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/archive.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ fn base_dir_from_aix(archive: ZipArchive<File>) -> PathBuf {
182182
let ext_props_path = archive
183183
.file_names()
184184
.into_iter()
185-
.find(|x| x.ends_with(".properties"))
185+
.find(|x| x.ends_with("classes.jar"))
186186
.unwrap();
187187

188188
Path::new(ext_props_path).parent().unwrap().to_owned()

0 commit comments

Comments
 (0)