phollyer
I’m trying to set up some custom mix tasks for working with elm but when I call:
Mix.shell.cmd("elm init")
I get the prompt from elm asking whether to proceed in creating elm.json, but after I type ‘y’ and hit enter the process hangs.
When I break out, the message
thread blocked indefinitely in an MVar operation
is printed to the console. I searched for this string, and only get back results relating to Haskell so I’m guessing the elm compiler and mix/elixir aren’t playing nice together when user input is required.
The following command works fine (presumably because it doesn’t require any user input from the cmd line):
Mix.shell.cmd("elm make #{@elm_src} --output=#{@elm_output_file} --debug")
I’ve also tried with System.cmd to no avail.
Any ideas on how to interact with Elm/Haskell from a mix task? Is it even possible?
Thanks
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #elixirconf-us
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kokolegorille
I don’t know Elm, but would this work?
NobbZ
The BEAM in general doesn’t like it.
stdinof your application isn’t magically wired tostdinof the executed shell program.You need to find a way to either enforce overwriting all, or to cancel in case of a conflict.
Or to write a
Porton your own, that intercepts output and splices input in a way that you can remote control the Port depending on the users input.If I had a choice, I’d try with enforcing/canceling approach…
phollyer
Unfortunately Elm doesn’t accept flags on the
initcmd, so that’s not an option.phollyer
Not too sure what you mean here. Would you be able to elaborate/explain further?
Thanks
NobbZ
A well designed generator has flags to either assume hard confirmation of overwrites on conflict or to abort the process on conflicts. You already said
elm initdoes not support this.In my opinion this is worth a feature request on the elm side of things…
phollyer
Wasn’t sure if you meant the flag option or something above my ‘pay grade’
Thanks for clarifying.
That was my thought’s too so I’ll head over to Elm and add the request.
This itself is not a major issue, the generator only generates a simple json file which I could do myself, but other cmds such as
installalso require y/n input so was hoping it was going to possible from a mix task.The
Portoption might be outside my current elixir/IO skills, but I’ll dip my toes into the water over the weekend and see what transpires.Thanks
OvermindDL1
It’s not that hard, I recommend it. The
erlexeclibrary (yes it’s erlang but works perfect in elixir) wraps up that work with a much better interface and error handling.But yeah, you’ll need to send the information (the
y<enter>in this case) to elm’sstdin.