Skip to content

Commit 37a066d

Browse files
committed
Fix bug in prep-libs, missing prep alias
1 parent 1417e7c commit 37a066d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Changelog
33

44
*Also see [Tools and installer changelog](https://github.com/clojure/brew-install/blob/1.12.0/CHANGELOG.md)*
55

6+
* next
7+
* Fix bug in prep-libs, missing prep alias
68
* 0.22.1484 on Feb 7, 2025
79
* During dep expansion, only consider lib to be omitted if all parent paths to root are omitted
810
* 0.22.1480 on Feb 6, 2025

Diff for: src/main/clojure/clojure/tools/deps.clj

+2-1
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,8 @@
716716
(dir/with-dir root-dir
717717
(let [basis (create-basis
718718
{:project :standard ;; deps.edn at root
719-
:args {:replace-deps {} :replace-paths ["."]}})
719+
:args {:replace-deps {} :replace-paths ["."]}
720+
:aliases [alias]})
720721
cp (join-classpath (:classpath-roots basis))
721722
qual-f (qualify-fn f (get-in basis [:aliases alias]))
722723
exit (exec-prep! root-dir cp qual-f exec-args)]

0 commit comments

Comments
 (0)