Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

10 wiersze
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.