From 6e8a2e2e9a6608502a3298f36706fbc608599b37 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Wed, 29 Jan 2020 23:55:21 +0100 Subject: [PATCH] [#245] add -iO and -Io --- src/babashka/main.clj | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/babashka/main.clj b/src/babashka/main.clj index 4e87122e..2af63fd6 100644 --- a/src/babashka/main.clj +++ b/src/babashka/main.clj @@ -70,6 +70,14 @@ (assoc opts-map :shell-in true :shell-out true)) + ("-iO") (recur (next options) + (assoc opts-map + :shell-in true + :edn-out true)) + ("-Io") (recur (next options) + (assoc opts-map + :edn-in true + :shell-out true)) ("-IO") (recur (next options) (assoc opts-map :edn-in true