From 6abff1dbdd575d0e9e6a010d3358c5921c59e034 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Fri, 31 Jan 2020 17:23:22 +0100 Subject: [PATCH] [#250] implement -- option --- src/babashka/main.clj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/babashka/main.clj b/src/babashka/main.clj index 2af63fd6..dc6751f0 100644 --- a/src/babashka/main.clj +++ b/src/babashka/main.clj @@ -43,6 +43,7 @@ (if options (let [opt (first options)] (case opt + ("--") (assoc opts-map :command-line-args (next options)) ("--version") {:version true} ("--help" "-h" "-?") {:help? true} ("--verbose")(recur (next options)