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 ae7ec10 commit a527c28Copy full SHA for a527c28
1 file changed
lib/igniter.ex
@@ -453,7 +453,11 @@ defmodule Igniter do
453
454
if Igniter.Mix.Task.igniter_task?(task) do
455
if !task.supports_umbrella?() && Mix.Project.umbrella?() do
456
- add_issue(igniter, "Cannot run #{inspect(task)} in an umbrella project.")
+ Igniter.add_issue(
457
+ igniter,
458
+ "Cannot run #{Mix.Task.task_name(task)} in an umbrella project. " <>
459
+ "Please run the installer from within one of the sub-application folders instead."
460
+ )
461
else
462
igniter
463
|> Map.put(:task, Mix.Task.task_name(task))
0 commit comments