Skip to content

Commit 0731c0a

Browse files
committed
Fix regression, aliases passed in at the CLI were no longer being picked up
1 parent 955f004 commit 0731c0a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CHANGELOG.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Unreleased
22

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

7-
## Changed
5+
- Bring back passing in aliases at the command line
86

97
# 0.38.168-alpha (2025-02-25 / 6f20908)
108

src/lambdaisland/launchpad.clj

+1-1
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-
ctx
618+
(assoc ctx :aliases (map keyword (::cli/argv ctx)))
619619
(or steps
620620
(concat
621621
start-steps

0 commit comments

Comments
 (0)