Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
Fix strict bug
Browse files Browse the repository at this point in the history
  • Loading branch information
theodorton committed Aug 27, 2016
1 parent 8578398 commit d5d02f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.cr
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cli = Commander::Command.new do |cmd|
end

Crow.logger = Logger.new(STDERR)
Crow.strict = options.bool["strict"] && !options.bool["no-strict"]
Crow.strict = !options.bool["no-strict"]

basename = nil
input = if arguments.size == 0
Expand Down

0 comments on commit d5d02f6

Please sign in to comment.