Current section
Files
Jump to
Current section
Files
lib/mix/tasks/devtools/patch.ex
defmodule Mix.Tasks.Devtools.Patch do
use Mix.Task
alias Mix.Tasks.Devtools.Common
@shortdoc "Version patch + tag creation"
def run(args) do
path = "#{Common.scripts_path()}/patch"
{_, 0} = System.cmd(path, args) |> IO.inspect()
end
end