Quellcode durchsuchen

rebar_dir: return _checkouts path in a canonical form

This enables relative paths for checkouts_dir configuration variable.
pull/2228/head
Maxim Fedorov vor 5 Jahren
Ursprung
Commit
02c2028a21
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      src/rebar_dir.erl

+ 1
- 1
src/rebar_dir.erl Datei anzeigen

@ -89,7 +89,7 @@ root_dir(State) ->
%% @doc returns the expected location of the `_checkouts' directory.
-spec checkouts_dir(rebar_state:t()) -> file:filename_all().
checkouts_dir(State) ->
filename:join(root_dir(State), rebar_state:get(State, checkouts_dir, ?DEFAULT_CHECKOUTS_DIR)).
rebar_file_utils:canonical_path(filename:join(root_dir(State), rebar_state:get(State, checkouts_dir, ?DEFAULT_CHECKOUTS_DIR))).
%% @doc returns the expected location of a given app in the checkouts
%% directory for the project.

Laden…
Abbrechen
Speichern