diff options
author | Tristan Sloughter <[email protected]> | 2013-02-04 18:08:13 -0600 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2013-02-04 18:09:17 -0600 |
commit | 2b20716439dd0f540dbf78cc6eaabf1aa32f8583 (patch) | |
tree | a70f55d58e9a837d247b81333ea28d995aca5157 /src/rcl_state.erl | |
parent | 1207514752a0e522893c60eb6434cb4a8117a7f1 (diff) | |
download | relx-2b20716439dd0f540dbf78cc6eaabf1aa32f8583.tar.gz relx-2b20716439dd0f540dbf78cc6eaabf1aa32f8583.tar.bz2 relx-2b20716439dd0f540dbf78cc6eaabf1aa32f8583.zip |
fix: replace COnfigFile with empty string if undefined
Diffstat (limited to 'src/rcl_state.erl')
-rw-r--r-- | src/rcl_state.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rcl_state.erl b/src/rcl_state.erl index ecf3115..25497f8 100644 --- a/src/rcl_state.erl +++ b/src/rcl_state.erl @@ -256,7 +256,7 @@ format(#state_t{log=LogState, output_dir=OutDir, lib_dirs=LibDirs, [rcl_util:indent(Indent), <<"state(">>, erlang:atom_to_list(Caller), <<"):\n">>, rcl_util:indent(Indent + 1), <<"log: ">>, rcl_log:format(LogState), <<",\n">>, - rcl_util:indent(Indent + 1), "config file: ", ConfigFile, "\n", + rcl_util:indent(Indent + 1), "config file: ", rcl_util:optional_to_string(ConfigFile), "\n", rcl_util:indent(Indent + 1), "goals: \n", [[rcl_util:indent(Indent + 2), rcl_depsolver:format_constraint(Goal), ",\n"] || Goal <- Goals], rcl_util:indent(Indent + 1), "output_dir: ", OutDir, "\n", |