Explorar el Código

use same symlink or copy function for deps links

pull/195/head
Tristan Sloughter hace 10 años
padre
commit
9fc885073b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/rebar_prv_install_deps.erl

+ 1
- 1
src/rebar_prv_install_deps.erl Ver fichero

@ -380,7 +380,7 @@ maybe_fetch(AppInfo, Upgrade, Seen, State) ->
{true, FoundApp} ->
?INFO("Linking ~s to ~s", [rebar_app_info:dir(FoundApp), AppDir]),
filelib:ensure_dir(AppDir),
ok = file:make_symlink(rebar_app_info:dir(FoundApp), AppDir),
rebar_file_utils:symlink_or_copy(rebar_app_info:dir(FoundApp), AppDir),
true
end;
{true, _} ->

Cargando…
Cancelar
Guardar