Current section

Files

Jump to
devtools lib mix tasks devtools remote_console.ex
Raw

lib/mix/tasks/devtools/remote_console.ex

defmodule Mix.Tasks.Devtools.RemoteConsole do
use Mix.Task
alias Mix.Tasks.Devtools.Common
@shortdoc "Remote console"
def run(args) do
path = "#{Common.path}/remote-console"
{_, 0} = System.cmd(path, args) |> IO.inspect
end
end