Skip to content

Commit

Permalink
rename debugger app to elixir_ls_debuger (#280)
Browse files Browse the repository at this point in the history
otherwise it conflicts with OTP debugger
  • Loading branch information
lukaszsamson authored Jun 4, 2020
1 parent 959bc55 commit 085efdb
Show file tree
Hide file tree
Showing 23 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Packaging

Bump the changelog
Bump the version numbers in `apps/debugger/mix.exs`, `apps/elixir_ls_utils/mix.exs`, and `apps/language_server/mix.exs`
Bump the version numbers in `apps/elixir_ls_debugger/mix.exs`, `apps/elixir_ls_utils/mix.exs`, and `apps/language_server/mix.exs`
Make PR
Merge PR
Make the tag from the new master
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule ElixirLS.Debugger.CLI do
def main do
WireProtocol.intercept_output(&Output.print/1, &Output.print_err/1)
Launch.start_mix()
Application.ensure_all_started(:debugger, :permanent)
Application.ensure_all_started(:elixir_ls_debugger, :permanent)
IO.puts("Started ElixirLS debugger v#{Launch.debugger_version()}")
Launch.print_versions()
warn_if_unsupported_version()
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion apps/debugger/mix.exs → apps/elixir_ls_debugger/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule ElixirLS.Debugger.Mixfile do

def project do
[
app: :debugger,
app: :elixir_ls_debugger,
version: "0.4.0",
build_path: "../../_build",
config_path: "../../config/config.exs",
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion apps/elixir_ls_utils/lib/launch.ex
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ defmodule ElixirLS.Utils.Launch do
end

def debugger_version do
{:ok, vsn} = :application.get_key(:debugger, :vsn)
{:ok, vsn} = :application.get_key(:elixir_ls_debugger, :vsn)
vsn
end

Expand Down

0 comments on commit 085efdb

Please sign in to comment.