diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_git_resource.erl | 2 | ||||
-rw-r--r-- | src/rebar_templater.erl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_git_resource.erl b/src/rebar_git_resource.erl index 7626772..3b77da2 100644 --- a/src/rebar_git_resource.erl +++ b/src/rebar_git_resource.erl @@ -120,7 +120,7 @@ make_vsn(Dir) -> collect_default_refcount() -> %% Get the tag timestamp and minimal ref from the system. The %% timestamp is really important from an ordering perspective. - AbortMsg1 = "Gtting log of git dependency failed in " ++ rebar_dir:get_cwd(), + AbortMsg1 = "Getting log of git dependency failed in " ++ rebar_dir:get_cwd(), {ok, String} = rebar_utils:sh("git log -n 1 --pretty=format:'%h\n' ", [{use_stdout, false}, diff --git a/src/rebar_templater.erl b/src/rebar_templater.erl index 824d376..143c28b 100644 --- a/src/rebar_templater.erl +++ b/src/rebar_templater.erl @@ -328,7 +328,7 @@ prioritize_templates([{Name, Type, File} | Rest], Valid) -> prioritize_templates(Rest, Valid); {_, file, _} -> ?DEBUG("Skipping template ~p, due to presence of a custom " - "template at ~s~n", [File]), + "template at ~s~n", [Name, File]), prioritize_templates(Rest, Valid) end. |