diff options
author | Håkan Mattsson <[email protected]> | 2010-02-18 17:06:58 +0100 |
---|---|---|
committer | Håkan Mattsson <[email protected]> | 2010-04-19 13:17:32 +0200 |
commit | 067785da7c85152aa8d2436935e77fef3efaaa2d (patch) | |
tree | 0b144755b84a8aac3c46336ad0263d6ee91e46ee /lib/reltool/src/reltool_server.erl | |
parent | a19fd2834746bdbca52763ff9b044db7bd0a83aa (diff) | |
download | otp-067785da7c85152aa8d2436935e77fef3efaaa2d.tar.gz otp-067785da7c85152aa8d2436935e77fef3efaaa2d.tar.bz2 otp-067785da7c85152aa8d2436935e77fef3efaaa2d.zip |
Created escript for simplified usage from makefiles
Diffstat (limited to 'lib/reltool/src/reltool_server.erl')
-rw-r--r-- | lib/reltool/src/reltool_server.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/reltool/src/reltool_server.erl b/lib/reltool/src/reltool_server.erl index a7064f7651..a9985677ba 100644 --- a/lib/reltool/src/reltool_server.erl +++ b/lib/reltool/src/reltool_server.erl @@ -1093,8 +1093,9 @@ read_config(OldSys, Filename, Status) when is_list(Filename) -> {error, Reason} -> Text = file:format_error(Reason), {OldSys, - reltool_utils:return_first_error(Status, "File access: " ++ - Text)} + reltool_utils:return_first_error(Status, + "Illegal config file " ++ + Filename ++ ": " ++ Text)} end; read_config(OldSys, {sys, KeyVals}, Status) -> {NewSys, Status2} = |