我在 lib/mix/tasks/thing.exs 中有一个任务事物
代码是:
defmodule Mix.Tasks.Thing do
use Mix.Task
def run(_) do
IO.puts "hello world"
end
end
当我跑mix thing
或者mix Thing
我得到The task thing could not be found
或者The task Thing could not be found
我mix compile
事先尝试过跑步,但没有帮助。
我还尝试将这个问题的代码直接放入我的 mix.exs 中,如那个问题所示。我仍然无法运行任务。