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 fc89178 commit 54ccc9cCopy full SHA for 54ccc9c
lib/mix/tasks/gettext.extract.ex
@@ -129,7 +129,10 @@ defmodule Mix.Tasks.Gettext.Extract do
129
pot_files
130
|> Enum.map(fn {path, _} -> Path.dirname(path) end)
131
|> Enum.uniq()
132
- |> Task.async_stream(&Mix.Tasks.Gettext.Merge.run([&1 | argv]), ordered: false)
+ |> Task.async_stream(&Mix.Tasks.Gettext.Merge.run([&1 | argv]),
133
+ ordered: false,
134
+ timeout: 120_000
135
+ )
136
|> Stream.run()
137
end
138
0 commit comments