Browse Source

Fetch proper rather from hex.pm instead of GitHub

pull/129/head
David Robakowski 8 years ago
parent
commit
c883d7e332
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      rebar.config.script

+ 4
- 1
rebar.config.script View File

@ -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 ->

Loading…
Cancel
Save