From b2be97ccb015405b99255d0de9a6399012157098 Mon Sep 17 00:00:00 2001 From: Peter Monks Date: Tue, 2 Jul 2024 17:44:55 -0700 Subject: [PATCH] :new: Expose debug flag for downstream code --- src/tools_convenience/api.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools_convenience/api.clj b/src/tools_convenience/api.clj index 33a5590..0479dc0 100644 --- a/src/tools_convenience/api.clj +++ b/src/tools_convenience/api.clj @@ -21,7 +21,7 @@ (:require [clojure.string :as s] [clojure.tools.build.api :as b])) -(def ^:private debug (Boolean/parseBoolean (s/trim (str (System/getenv "TOOLS_CONVENIENCE_DEBUG"))))) +(def debug (Boolean/parseBoolean (s/trim (str (System/getenv "TOOLS_CONVENIENCE_DEBUG"))))) (defn- format-command-line "Returns a string representation of the given command line (a sequence of values), in a format that can be copied and pasted into a terminal."