We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 583b504 commit bb52564Copy full SHA for bb52564
lib/mix/lib/mix/tasks/deps.compile.ex
@@ -334,18 +334,7 @@ defmodule Mix.Tasks.Deps.Compile do
334
335
command =
336
{"gleam",
337
- [
338
- "compile-package",
339
- "--no-beam",
340
- "--target",
341
- "erlang",
342
- "--package",
343
- package,
344
- "--out",
345
- out,
346
- "--lib",
347
- lib
348
- ]}
+ ~w(compile-package --no-beam --target erlang --package #{package} --out #{out} --lib #{lib})}
349
350
shell_cmd!(dep, config, command)
351
0 commit comments