Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
juerg committed Jan 16, 2024
1 parent 278e432 commit 38b7410
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/com/github/jlangch/venice/venice.venice
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
(defonce java-11-home (str/strip-end (system-env :JAVA_11_HOME) "/"))
(defonce java-home java-8-home)

(defonce sonatype-user "xxxxxx")
(defonce sonatype-user "jlangch")

(defonce cmd-line-prompt (str proj-name "> "))

Expand Down Expand Up @@ -219,10 +219,10 @@
(defn display-status-bar []
(when display-status-bar?
(let [cols (repl/term-cols)
left (str/format "%s" (java-version))
left (str/format "%s" (version))
right ""
delim (str/repeat "-" (- cols 8 (count left) (count right)))]
(printlnc :status (str/format "-- %s %s %s --" left delim right)))))
(printlnc :status "-- ~{left} ~{delim} ~{right} --"))))

(defn run-command [cmd & args]
(cond
Expand Down

0 comments on commit 38b7410

Please sign in to comment.