psu_parser: Windows use a different line break convention.

This commit is contained in:
Loïc Hoguin 2010-09-21 23:23:58 +02:00
parent e8a2312794
commit f585a916e6

View File

@ -60,12 +60,12 @@ parse_zone(NblFilename) ->
end. end.
nbl_list_files(NblFilename) -> nbl_list_files(NblFilename) ->
Cmd = case os:type() of {Cmd, NL} = case os:type() of
{win32, nt} -> lists:flatten(io_lib:format("nbl -t ~s", [NblFilename])); {win32, nt} -> {lists:flatten(io_lib:format("nbl -t ~s", [NblFilename])), "\r\n"};
_ -> io_lib:format("./nbl -t ~s", [NblFilename]) _ -> {io_lib:format("./nbl -t ~s", [NblFilename]), "\n"}
end, end,
StdOut = os:cmd(Cmd), StdOut = os:cmd(Cmd),
re:split(StdOut, "\n", [{return, list}]). re:split(StdOut, NL, [{return, list}]).
nbl_extract_files(NblFilename) -> nbl_extract_files(NblFilename) ->
filelib:ensure_dir("tmp/"), filelib:ensure_dir("tmp/"),