From a36edce079cca19ec58aa1224f76c746a03eccda Mon Sep 17 00:00:00 2001 From: SisMaker <1713699517@qq.com> Date: Wed, 26 Feb 2020 00:25:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E6=A0=BC=E5=BC=8F=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/erlNpc.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/erlNpc.erl b/src/erlNpc.erl index 64d6387..1212810 100644 --- a/src/erlNpc.erl +++ b/src/erlNpc.erl @@ -7,13 +7,13 @@ main(Args) -> file:set_cwd("c_src"), {ok, Dir} = file:get_cwd(), - io:format("erlNpc begin compile pwd:~p ~n", [Dir]), + io:format("erlNpc begin compile pwd:~15.p ~n", [Dir]), FunCom = fun(File) -> case filelib:is_dir(File) == true andalso lists:nth(1, File) =/= 46 andalso filename:basename(File) =/= "include" of true -> {ok, CurDir} = file:get_cwd(), - io:format("erlNpc cur compile/clean: ~s, cur pwd:~p ~n", [File, CurDir]), + io:format("erlNpc cur ~p: ~-18.s, cur pwd:~p ~n", [Args, File, CurDir]), file:set_cwd(File), rebar:main(Args), file:set_cwd("..");