summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-05-03 11:51:52 -0500
committerTristan Sloughter <t@crashfast.com>2015-05-03 12:16:00 -0500
commitd4c7dea7351435eaafe56a23845d8772e4bac0ac (patch)
tree38b2ebf4f65f44274628a6bc4c10ef43d0bc5976 /src
parent214d6c979756a0acfcfa52d88d07ba882cde56d7 (diff)
only fetch branch needed, remove rebar_vsn_plugins from erlware_commons
Diffstat (limited to 'src')
-rw-r--r--src/rebar_git_resource.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_git_resource.erl b/src/rebar_git_resource.erl
index 4e7485c..07c9b4d 100644
--- a/src/rebar_git_resource.erl
+++ b/src/rebar_git_resource.erl
@@ -32,7 +32,7 @@ needs_update(Dir, {git, Url, {tag, Tag}}) ->
not ((Current1 =:= Tag) andalso compare_url(Dir, Url));
needs_update(Dir, {git, Url, {branch, Branch}}) ->
%% Fetch remote so we can check if the branch has changed
- {ok, _} = rebar_utils:sh(?FMT("git fetch", []),
+ {ok, _} = rebar_utils:sh(?FMT("git fetch origin ~s", [Branch]),
[{cd, Dir}]),
%% Check for new commits to origin/Branch
{ok, Current} = rebar_utils:sh(?FMT("git log HEAD..origin/~s --oneline", [Branch]),