ソースを参照

Merge pull request #2186 from garazdawi/fix-windows-epmd-start

Fix epmd start on windows
pull/2190/head
Fred Hebert 5年前
committed by GitHub
コミット
00df05b27c
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/rebar_dist_utils.erl

+ 1
- 1
src/rebar_dist_utils.erl ファイルの表示

@ -67,7 +67,7 @@ start_epmd() ->
%% Indirectly boot EPMD through calling Erlang so that we don't risk %% Indirectly boot EPMD through calling Erlang so that we don't risk
%% attaching it to the current proc %% attaching it to the current proc
?CONSOLE("Attempting to start epmd...", []), ?CONSOLE("Attempting to start epmd...", []),
os:cmd("erl -sname a -eval 'halt(0).';").
os:cmd("erl -sname a -noinput -eval \"halt(0).\";").
warn_dist() -> warn_dist() ->
?ERROR("Erlang Distribution failed, falling back to nonode@nohost.", []). ?ERROR("Erlang Distribution failed, falling back to nonode@nohost.", []).

読み込み中…
キャンセル
保存