We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:exec-fn
clj -M
Given the following deps.edn:
deps.edn
{:aliases {:foo {:extra-deps {org.babashka/cli {:mvn/version "0.4.38"}} :exec-fn clojure.core/prn :main-opts ["-m" "babashka.cli.exec"]}}}
I can override the :exec-fn when using clj -X:
clj -X
mk@studio ~/d/cli-exec-fn> clj -X:foo :my-string '"foo"' {:my-string "foo"} mk@studio ~/d/cli-exec-fn> clj -X:foo clojure.core/println :my-string '"foo"' {:my-string foo}
But not when using babashka.cli via clj -M:
babashka.cli
mk@studio ~/d/cli-exec-fn> clj -M:foo --my-string foo {:my-string "foo"} mk@studio ~/d/cli-exec-fn> clj -M:foo clojure.core/println --my-string foo {:my-string "foo"}
It would be nice if this could be supported.
The text was updated successfully, but these errors were encountered:
Fixed in v0.4.39
v0.4.39
Sorry, something went wrong.
Another fix for #48
01537e0
No branches or pull requests
Given the following
deps.edn
:I can override the
:exec-fn
when usingclj -X
:But not when using
babashka.cli
viaclj -M
:It would be nice if this could be supported.
The text was updated successfully, but these errors were encountered: