Current section

Files

Jump to
devtools lib mix tasks devtools pre.ex
Raw

lib/mix/tasks/devtools/pre.ex

defmodule Mix.Tasks.Devtools.Pre do
use Mix.Task
alias Mix.Tasks.Devtools.Common
@shortdoc "Version patch + tag creation"
def run(_args) do
path = "#{Common.scripts_path()}/pre-release"
{_, 0} = System.cmd("bash", [path]) |> IO.inspect()
end
end