Skip to content

Commit

Permalink
Upgrade to clj-kondo 2023.07.13
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias committed Aug 20, 2023
1 parent 3d50dea commit 0a5eb21
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/clj-kondo
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

set -euo pipefail

CLJ_KONDO_VERSION="2022.10.14"
CLJ_KONDO_VERSION="2023.07.13"
ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/../" && pwd)

function ensure_clj_kondo() {
Expand Down
6 changes: 3 additions & 3 deletions src/clojars/admin.clj
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
(defn current-date-str []
(.format (SimpleDateFormat. "yyyyMMdd") (db/get-time)))

(def ^:dynamic *db*)
(def ^:dynamic *search*)
(def ^:dynamic *storage*)
(def ^:dynamic *db* nil)
(def ^:dynamic *search* nil)
(def ^:dynamic *storage* nil)

(defn backup-dir [base-dir path]
(io/file base-dir
Expand Down
2 changes: 1 addition & 1 deletion test/clojars/unit/admin_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
(defn in-backup-somewhere? [name]
(some #{name} (map (memfn getName) (file-seq (io/file (:deletion-backup-dir (config)))))))

(def ^:dynamic *search-removals*)
(def ^:dynamic *search-removals* nil)

(defmacro with-repo-setup [& body]
`(let [jar# (io/file (io/resource "fake.jar"))]
Expand Down

0 comments on commit 0a5eb21

Please sign in to comment.