Skip to content

Commit

Permalink
Support negative priority (#795)
Browse files Browse the repository at this point in the history
  • Loading branch information
Prunoideae authored Feb 21, 2024
1 parent 261bc16 commit 26d9636
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

public class ScriptFileInfo {
private static final Pattern FILE_FIXER = Pattern.compile("[^\\w./]");
private static final Pattern PROPERTY_PATTERN = Pattern.compile("^(\\w+)\\s*[:=]?\\s*(\\w+)$");
private static final Pattern PROPERTY_PATTERN = Pattern.compile("^(\\w+)\\s*[:=]?\\s*(-?\\w+)$");

public final ScriptPackInfo pack;
public final String file;
Expand Down

0 comments on commit 26d9636

Please sign in to comment.