Skip to content

Commit

Permalink
Use dashed version of name in config file.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavisp3 committed Oct 17, 2016
1 parent d55e273 commit 391fd0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/in/ashwanthkumar/gocd/slack/ruleset/Rules.java
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ public static Rules fromConfig(Config config) {
}

boolean processAllRules = false;
if (config.hasPath("processAllRules")) {
processAllRules = config.getBoolean("processAllRules");
if (config.hasPath("process-all-rules")) {
processAllRules = config.getBoolean("process-all-rules");
}

Proxy proxy = null;
Expand Down

0 comments on commit 391fd0c

Please sign in to comment.