Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

13 строки
285 B

  1. -module(rebar_gdb_plugin).
  2. -compile(export_all).
  3. pre_eunit(_Config, _AppFile) ->
  4. case os:getenv("USE_GDB") of
  5. false ->
  6. ok;
  7. _ ->
  8. Prompt = io_lib:format("GDB Attach to: ~s~n", [os:getpid()]),
  9. io:get_line(Prompt)
  10. end,
  11. ok.