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
Sure, here is a (hopefully) reproducible steps:
docker run --rm -it --platform linux/amd64 homebrew/brew:4.2.15 /bin/bash
brew install babashka/brew/neil
brew install java
echo {:deps {}} > deps.edn
neil add dep com.s-exp/hirundo
neil add dep metosin/malli
cat deps.edn
In my m1 max mac, step 3 ~ 6 in a tmp/xx folder will suffice to reproduce it. I added step 1 and 2 for better reproducibility.
tmp/xx
Originally posted by @zhming0 in #208 (reply in thread)
The text was updated successfully, but these errors were encountered:
A repro purely with rewrite-edn:
(-> (e/parse-string "{}") (e/assoc-in [:deps 'org.clojure/clojure] {:mvn/version "1.10.2"}) str e/parse-string (e/assoc-in [:deps 'org.foo/foo :mvn/version] "1.10.2") str) ;; => "{:deps {org.clojure/clojure {:mvn/version \"1.10.2\"} org.foo/foo {:mvn/version \"1.10.2\"}}}"
Sorry, something went wrong.
Also reported here: borkdude/rewrite-edn#36
3bb1913
No branches or pull requests
Sure, here is a (hopefully) reproducible steps:
docker run --rm -it --platform linux/amd64 homebrew/brew:4.2.15 /bin/bash
brew install babashka/brew/neil
,brew install java
.echo {:deps {}} > deps.edn
neil add dep com.s-exp/hirundo
neil add dep metosin/malli
cat deps.edn
In my m1 max mac, step 3 ~ 6 in a
tmp/xx
folder will suffice to reproduce it.I added step 1 and 2 for better reproducibility.
Originally posted by @zhming0 in #208 (reply in thread)
The text was updated successfully, but these errors were encountered: