Skip to content

Commit fcc2ece

Browse files
committed
Dont let CLI arg aliases replace aliases define in deps.local.edn, but combine them
1 parent 993e915 commit fcc2ece

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Unreleased
22

3-
## Added
4-
53
## Fixed
64

7-
## Changed
5+
- Honor aliases both from `deps.local.edn` and CLI args
86

97
# 0.39.171-alpha (2025-02-25 / 0731c0a)
108

src/lambdaisland/launchpad.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@
615615
pre-steps
616616
post-steps] :as ctx}]
617617
(let [ctx (process-steps
618-
(assoc ctx :aliases (map keyword (::cli/argv ctx)))
618+
(update ctx :aliases concat (map keyword (::cli/argv ctx)))
619619
(or steps
620620
(concat
621621
start-steps

0 commit comments

Comments
 (0)