Skip to content

Commit

Permalink
Fix #83: windows issue (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude authored Jun 13, 2024
1 parent 9e67b0f commit 3852708
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/babashka/bbin/deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,12 @@
(or (some #(deps-type-match? cli-opts %) deps-types)
{:procurer :unknown-procurer}))

(defn directory? [x]
(fs/directory? (str/replace x #"^file:https://" "")))

(defn regular-file? [x]
(fs/regular-file? (str/replace x #"^file:https://" "")))

(defn- match-artifact [cli-opts procurer]
(cond
(or (#{:maven} procurer)
Expand All @@ -176,14 +182,14 @@

(or (#{:git} procurer)
(and (#{:local} procurer)
(or (and (:script/lib cli-opts) (fs/directory? (:script/lib cli-opts)))
(and (:local/root cli-opts) (fs/directory? (:local/root cli-opts)))))
(or (and (:script/lib cli-opts)
(directory? (:script/lib cli-opts)))
(and (:local/root cli-opts) (directory? (:local/root cli-opts)))))
(and (#{:http} procurer) (re-seq #"\.git$" (:script/lib cli-opts))))
:dir

(or (and (#{:local} procurer) (and (:script/lib cli-opts)
(or (fs/regular-file? (:script/lib cli-opts))
(fs/regular-file? (str/replace (:script/lib cli-opts) #"^file:https://" "")))))
(regular-file? (:script/lib cli-opts))))
(and (#{:http} procurer) (re-seq #"\.(cljc?|bb)$" (:script/lib cli-opts))))
:file

Expand Down

0 comments on commit 3852708

Please sign in to comment.