Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! fixup! split concerns
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenet committed Jul 18, 2024
1 parent 9c09e1a commit 6738ddb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/exoscale/tools/project/standalone.clj
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,11 @@

(defn assoc-version
[{:as opts :exoscale.project/keys [version-file]}]
(cond-> opts
(some? version-file)
(assoc :exoscale.project/version (version/read-version-file* version-file))))

(let [v (version/read-version-file* version-file)]
(cond-> opts
(some? v)
(assoc :exoscale.project/version (version/read-version-file* version-file)))))

(defn- assoc-deps-file
"unless explicit options are given, prepare deps-module configuration"
Expand Down

0 comments on commit 6738ddb

Please sign in to comment.