ソースを参照

Fetch proper rather from hex.pm instead of GitHub

pull/129/head
David Robakowski 8年前
コミット
c883d7e332
1個のファイルの変更4行の追加1行の削除
  1. +4
    -1
      rebar.config.script

+ 4
- 1
rebar.config.script ファイルの表示

@ -19,7 +19,10 @@ IsDevEnv = begin
end.
Deps = if not IsDevEnv -> []; true ->
[{proper, ".*", {git, PropErUrl, {branch, "master"}}}]
case IsRebar3 of
true -> [proper];
false -> [{proper, ".*", {git, PropErUrl, {branch, "master"}}}]
end
end,
ErlOpts = if not IsDevEnv -> []; true ->

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