From 8cdb44c0698842c921091066df893d0c90609137 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Mon, 1 Feb 2016 18:48:59 +0100 Subject: [PATCH] tagged-git: use fetch --tags to overwrite local tags. --- upstream-git.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upstream-git.lisp b/upstream-git.lisp index 93f3935..5a50f20 100644 --- a/upstream-git.lisp +++ b/upstream-git.lisp @@ -24,7 +24,7 @@ (defmethod vcs-update ((source tagged-git-source) checkout-directory) (with-posix-cwd checkout-directory - (run "git" "fetch") + (run "git" "fetch" "--tags") (run "git" "checkout" (tag-data source)))) (defmethod vcs-update :after ((source git-source) checkout-directory)