您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
372 B

  1. case erlang:function_exported(rebar3, main, 1) of
  2. true -> % rebar3
  3. CONFIG;
  4. false -> % rebar 2.x or older
  5. %% Rebuild deps, possibly including those that have been moved to
  6. %% profiles
  7. [{deps, [
  8. {goldrush, ".*", {git, "https://github.com/DeadZen/goldrush.git", {tag, "0.1.9"}}}
  9. ]} | lists:keydelete(deps, 1, CONFIG)]
  10. end.