idk
Some checks failed
build / build (push) Failing after 17s

This commit is contained in:
2026-03-22 16:43:49 -06:00
parent fad31603a2
commit 1cbb4fbbdc
2 changed files with 6 additions and 2 deletions

View File

@@ -9,7 +9,9 @@ mkCljBin {
projectSrc = ./.;
lockfile = ../deps-lock.json;
main-ns = "net.deertopia.publisher.main";
buildInputs = [];
buildInputs = [
doerg
];
nativeBuildInputs = [
babashka
];

View File

@@ -20,7 +20,9 @@
(loop [os (seq overrides)
loc zloc]
(if-some [[[k v] & xs] os]
(recur xs (z/assoc loc k v))
(do (printf "override dep %s with %s\n"
(pr-str k) (pr-str v))
(recur xs (z/assoc loc k v)))
loc)))
(defn args->overrides [args]