From f04ae47efbfdf0d2e92b60b6f5565a694d8c79a4 Mon Sep 17 00:00:00 2001 From: Codinget Date: Tue, 29 Dec 2020 17:14:52 +0100 Subject: [PATCH] fix moonc - --- bin/moonc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/moonc b/bin/moonc index e462d83..98e8eda 100755 --- a/bin/moonc +++ b/bin/moonc @@ -26,7 +26,7 @@ if not read_stdin then parser:argument("file/directory"):args("+") end -local opts = parser:parse() +local opts = read_stdin and {} or parser:parse() if opts.version then local v = require "moonscript.version"