contrib: It doesn't make sense to pull all tags

On certain git versions running: git pull origin --tags ends up with the
following error: It doesn't make sense to pull all tags; you probably
meant: git fetch --tags

So removing the --tags since later in the execution we do a git fetch
--tags

Signed-off-by: Sébastien Han <seb@redhat.com>
pull/1124/head
Sébastien Han 2016-11-28 15:12:40 +01:00
parent 9281a564f2
commit 0530ff86f9
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ function check_existing_remote {
}
function pull_origin {
git pull origin --tags
git pull origin master
}
function reset_hard_origin {