https://bugs.kde.org/show_bug.cgi?id=383834
--- Comment #1 from Kevin Funk <kf...@kde.org> --- In the meantime, this WIP patch solves my issue: ``` diff --git a/modules/ksb/Updater/Git.pm b/modules/ksb/Updater/Git.pm index af14c16..e5b4b26 100644 --- a/modules/ksb/Updater/Git.pm +++ b/modules/ksb/Updater/Git.pm @@ -89,6 +89,9 @@ sub clone if (0 != log_command($module, 'git-clone', ['git', 'clone', @args])) { croak_runtime("Failed to make initial clone of $module"); } + if (0 != log_command($module, 'git-fetch', ['git', 'fetch', '--tags'])) { + croak_runtime("Failed to fetch tags of $module"); + } } $ipc->notifyPersistentOptionChange( @@ -384,7 +387,7 @@ sub updateExistingClone # Download updated objects. This also updates remote heads so do this # before we start comparing branches and such. - if (0 != log_command($module, 'git-fetch', ['git', 'fetch', $remoteName])) { + if (0 != log_command($module, 'git-fetch', ['git', 'fetch', '--tags', $remoteName])) { croak_runtime ("Unable to perform git fetch for $remoteName, which should be $cur_repo"); } ``` -- You are receiving this mail because: You are watching all bug changes.