From 2e7b1b21302389e90b41fa5677b8f83aac5e862c Mon Sep 17 00:00:00 2001 From: Gert Goet Date: Fri, 1 Mar 2024 12:43:40 +0100 Subject: [PATCH] More loggin --- src/eval/deps_try.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/eval/deps_try.clj b/src/eval/deps_try.clj index d3b635e..487ee81 100644 --- a/src/eval/deps_try.clj +++ b/src/eval/deps_try.clj @@ -19,6 +19,7 @@ (def init-cp (get-classpath)) (defn- run-clojure [opts & args] + (prn ::run-clojure :opts opts :args args) (let [[opts args] (if (map? opts) [opts args] [nil (cons opts args)])] (fs/with-temp-dir [tmp {}] (apply p/sh (merge {:dir (str tmp)} opts) @@ -153,7 +154,7 @@ recipe-location (into (if ns-only ["--recipe-ns" recipe-location] ["--recipe" recipe-location])))] - (apply p/exec cmd)))) + (apply p/exec (doto cmd prn))))) (defn- recipe-manifest-contents [{:keys [refresh] :as _cli-opts}] (let [remote-manifest-file "https://raw.githubusercontent.com/eval/deps-try/master/recipes/manifest.edn"