Commit 9115a4f9 authored by GitLab's avatar GitLab

Remove satellites when moving namespace

parent b53ca0bc
...@@ -71,8 +71,15 @@ class Namespace < ActiveRecord::Base ...@@ -71,8 +71,15 @@ class Namespace < ActiveRecord::Base
if File.exists?(new_path) if File.exists?(new_path)
raise "Already exists" raise "Already exists"
end end
begin
begin
# Remove satellite when moving repo
if path_was.present?
satellites_path = File.join(Gitlab.config.satellites.path, path_was)
FileUtils.rm_r( satellites_path, force: true )
end
FileUtils.mv( old_path, new_path ) FileUtils.mv( old_path, new_path )
send_update_instructions send_update_instructions
@require_update_gitolite = true @require_update_gitolite = true
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment