Current section

Files

Jump to
jacob lib jacob_cli commands error.ex
Raw

lib/jacob_cli/commands/error.ex

defmodule JacobCli.Commands.Error do
use Jacob.Command
@name "error"
@desc "Handle invalid command calls."
@hidden true
@moduledoc false
def run(_) do
IO.puts("Invalid command.")
System.halt(1)
end
end