Skip to content

Commit

Permalink
fix filename resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmn3 committed Dec 13, 2021
1 parent ba0bcf9 commit d869ca8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Clojure's [threading macros](https://clojure.org/guides/threading_macros) (the `
Place the following in the `:deps` map of your `deps.edn` file:
```clojure
...
net.clojars.john/injest {:mvn/version "0.1.0-beta.3"}
net.clojars.john/injest {:mvn/version "0.1.0-beta.4"}
...
```
### clj-kondo
Expand All @@ -30,7 +30,7 @@ To try it in a repl right now with `criterium` and `net.cgrand.xforms`, drop thi
```clojure
clj -Sdeps \
'{:deps
{net.clojars.john/injest {:mvn/version "0.1.0-beta.3"}
{net.clojars.john/injest {:mvn/version "0.1.0-beta.4"}
criterium/criterium {:mvn/version "0.4.6"}
net.cgrand/xforms {:mvn/version "0.19.2"}}}'
```
Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(:require [org.corfield.build :as bb]))

(def lib 'net.clojars.john/injest)
(def version "0.1.0-beta.3")
(def version "0.1.0-beta.4")

;; clojure -T:build ci
;; clojure -T:build deploy
Expand Down
2 changes: 1 addition & 1 deletion src/injest/report.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
(def report-taps (atom {}))

(defn flc [form]
(let [f (namespace ::x)
(let [f #?(:clj *file* :cljs (namespace ::x))
{:as m :keys [line column]} (meta form)
k (str f "?line=" line "&col=" column)]
k))
Expand Down

0 comments on commit d869ca8

Please sign in to comment.