Skip to content

Commit 6afda49

Browse files
committed
Initialize colorization with system default -- fixes #393
1 parent ad524f2 commit 6afda49

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

boot/core/src/boot/main.clj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@
118118
(pod/set-pod-id! pod-id)
119119
(pod/set-worker-pod! worker-pod)
120120
(reset! pod/shutdown-hooks shutdown-hooks)
121-
(reset! util/*colorize?* (util/colorize?-system-default))
122121

123122
(let [[arg0 args args*] (if (seq args*)
124123
[arg0 args args*]

boot/pod/src/boot/util.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
(def ^:dynamic *colorize?*
4646
"Atom containing the value that determines whether ANSI colors escape codes
4747
will be printed with boot output."
48-
(atom false))
48+
(atom (colorize?-system-default)))
4949

5050
(defn- print*
5151
[verbosity color args]

0 commit comments

Comments
 (0)