diff options
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | lib/gitlab_projects.rb | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,5 @@ +v4.0.3 + - Fetch repositories with `--prune` option by default v4.0.2 - Fix gitlab_custom_hook dependencies diff --git a/lib/gitlab_projects.rb b/lib/gitlab_projects.rb index 60addc7..505b49e 100644 --- a/lib/gitlab_projects.rb +++ b/lib/gitlab_projects.rb @@ -205,6 +205,7 @@ class GitlabProjects $logger.info "Fetching remote #{@name} for project #{@project_name}." cmd = %W(git --git-dir=#{full_path} fetch #{@name}) + cmd << '--prune' cmd << '--force' if forced cmd << tags_option pid = Process.spawn(*cmd) |