Skip to content

Commit 31dcbfb

Browse files
committed
mix compile.app should allow custom keys in .app
1 parent 49fa59d commit 31dcbfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/mix/lib/mix/tasks/compile.app.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ defmodule Mix.Tasks.Compile.App do
131131
:ok
132132
{ :mod, value } ->
133133
invalid "Application callback module (:mod) should be either [] or {module, start_args} (got #{inspect value} instead)"
134-
{ key, value } ->
135-
invalid "Unknown application key #{inspect key} with value #{inspect value}"
134+
_ ->
135+
:ok
136136
end
137137
end
138138

0 commit comments

Comments
 (0)