Skip to content

Commit

Permalink
Merge remote-tracking branch 'Vagabond/adt-update-tags' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredmorrow committed Nov 6, 2013
2 parents aa46d85 + 01df43e commit 117c0f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rebar_deps.erl
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ update_source1(AppDir, {git, _Url, {branch, Branch}}) ->
rebar_utils:sh(?FMT("git pull --ff-only --no-rebase -q origin ~s", [Branch]), ShOpts);
update_source1(AppDir, {git, _Url, {tag, Tag}}) ->
ShOpts = [{cd, AppDir}],
rebar_utils:sh("git fetch --tags origin", ShOpts),
rebar_utils:sh("git fetch origin", ShOpts),
rebar_utils:sh(?FMT("git checkout -q ~s", [Tag]), ShOpts);
update_source1(AppDir, {git, _Url, Refspec}) ->
ShOpts = [{cd, AppDir}],
Expand Down

0 comments on commit 117c0f7

Please sign in to comment.