From d5d02f6eb50cc4c2459c2e58107b3067e5f4e447 Mon Sep 17 00:00:00 2001 From: Theodor Tonum Date: Mon, 22 Aug 2016 07:06:21 +0200 Subject: [PATCH] Fix strict bug --- src/cli.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.cr b/src/cli.cr index 0e4fb38..c2ece9e 100644 --- a/src/cli.cr +++ b/src/cli.cr @@ -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