]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
contrib: It doesn't make sense to pull all tags 1124/head
authorSébastien Han <seb@redhat.com>
Mon, 28 Nov 2016 14:12:40 +0000 (15:12 +0100)
committerSébastien Han <seb@redhat.com>
Mon, 28 Nov 2016 14:12:40 +0000 (15:12 +0100)
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>
contrib/push-roles-to-ansible-galaxy.sh

index 7179a4eb9fd9e76094581efbc3b9eab5ba8daa86..a0f85cbd12830ddd935628a7ef698284b55b3322 100755 (executable)
@@ -23,7 +23,7 @@ function check_existing_remote {
 }
 
 function pull_origin {
-  git pull origin --tags
+  git pull origin master
 }
 
 function reset_hard_origin {