Skip to content

Commit

Permalink
Merge pull request #6 from kepler16/jv/fix-deps-env
Browse files Browse the repository at this point in the history
Don't wrap extra deps env in "'" chars
  • Loading branch information
julienvincent authored Jan 18, 2024
2 parents 7d8ab69 + 4d05342 commit c0dd30d
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions packages/kmono/src/k16/kmono/adapters/clojure_deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,13 @@

(prepare-deps-env [_ changes]
(binding [*print-namespace-maps* false]
(str "'"
{:deps
(into {} (map
(fn [dep]
[(symbol dep)
{:mvn/version
(get-in changes [dep :version])}]))
managed-deps)}
"'")))
(pr-str {:deps
(into {} (map
(fn [dep]
[(symbol dep)
{:mvn/version
(get-in changes [dep :version])}]))
managed-deps)})))

(get-managed-deps [_] managed-deps)

Expand Down

0 comments on commit c0dd30d

Please sign in to comment.