Skip to content

Commit d7f8b28

Browse files
committed
fix: update missing class regex
1 parent 9d37c60 commit d7f8b28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/log/log_analysis.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ lazy_static! {
1919

2020
// ---
2121

22-
static ref MISSING_CREATE_CLASS_REGEX: Regex = Regex::new(r"java.lang.NoClassDefFoundError: com/simibubi/create/.*\n.*TRANSFORMER/([a-z][a-z0-9_]{1,63})@").unwrap();
22+
static ref MISSING_CREATE_CLASS_REGEX: Regex = Regex::new(r"java\.lang\.NoClassDefFoundError: com/simibubi/create/.*\n.*(?:TRANSFORMER/([a-z][a-z0-9_]{1,63})@|at .*~\[([a-z][a-z0-9_]{1,63})-.*jar)").unwrap();
2323
static ref OUTDATED_FLYWHEEL_VERSION_REGEX: Regex = Regex::new(r"Mod ID: 'flywheel', Requested by: 'create', Expected range: '\[1\.0\.0.*,2\.0\)', Actual version: '0\.6\.11-13'").unwrap();
2424
}
2525

0 commit comments

Comments
 (0)