diff options
author | Tristan Sloughter <[email protected]> | 2014-10-01 08:03:25 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2014-10-11 11:13:05 -0500 |
commit | e4849bd132b28ba1e1420686aadf8b2136c44fbd (patch) | |
tree | 6d37fc2e021e8a860056dbc2cb59361de132bc54 /src/rlx_state.erl | |
parent | 2604b7f0e9e11ee2fae17816499aba180b9b9683 (diff) | |
download | relx-e4849bd132b28ba1e1420686aadf8b2136c44fbd.tar.gz relx-e4849bd132b28ba1e1420686aadf8b2136c44fbd.tar.bz2 relx-e4849bd132b28ba1e1420686aadf8b2136c44fbd.zip |
support config passed in as proplist instead of filename
Diffstat (limited to 'src/rlx_state.erl')
-rw-r--r-- | src/rlx_state.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlx_state.erl b/src/rlx_state.erl index 71b96f3..a25c60f 100644 --- a/src/rlx_state.erl +++ b/src/rlx_state.erl @@ -216,11 +216,11 @@ goals(#state_t{goals=TS}) -> goals(State, Goals) -> State#state_t{goals=Goals}. --spec config_file(t()) -> file:filename() | undefined. +-spec config_file(t()) -> file:filename() | proplists:proplist() | undefined. config_file(#state_t{config_file=ConfigFiles}) -> ConfigFiles. --spec config_file(t(), file:filename() | undefined) -> t(). +-spec config_file(t(), file:filename() | proplists:proplist() | undefined) -> t(). config_file(State, ConfigFiles) -> State#state_t{config_file=ConfigFiles}. |