Skip to content

Commit

Permalink
Prevent ::release key from returning full runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Jan 10, 2025
1 parent d79c8d0 commit cbdccac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/duct/compiler/cljs/shadow.clj
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
(defmethod ig/init-key ::release [key config]
(let [config (normalize-config key config)]
(with-runtime (make-runtime config)
(api/release* (-> config :builds (get key)) {}))))
(api/release* (-> config :builds (get key)) {}))
key))

(defmethod ig/init-key ::server [key config]
(let [config (normalize-config key config)]
Expand Down

0 comments on commit cbdccac

Please sign in to comment.