Skip to content

Commit

Permalink
Make case insensitive the default
Browse files Browse the repository at this point in the history
  • Loading branch information
rcraggs committed Oct 16, 2018
1 parent 032f2fc commit c643f9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/gitruler/Command.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.nio.file.*;
import java.text.DecimalFormat;

@CommandLine.Command(name = "java -jar gitruler.jar", mixinStandardHelpOptions = true, version = "Gitruler 1.0")
@CommandLine.Command(name = "java -jar gitruler.jar", mixinStandardHelpOptions = true, version = "Gitruler 1.1")
public class Command implements Runnable {

private static final String ANSI_RESET = "\u001B[0m";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gitruler/Rule.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ String getBranch() {

boolean getIgnoreCase() {

Object result = details.getOrDefault("ignore-case", false);
Object result = details.getOrDefault("ignore-case", true);
if (result instanceof Boolean) {
return (boolean) result;
} else
Expand Down

0 comments on commit c643f9d

Please sign in to comment.