Skip to content
Snippets Groups Projects
Commit 4861b1bb authored by Douglas Barbosa Alexandre's avatar Douglas Barbosa Alexandre
Browse files

Fix import of GitHub's wiki when the repository has not been created

parent 268fb004
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -82,8 +82,12 @@ module Gitlab
end
 
true
rescue Gitlab::Shell::Error
false
rescue Gitlab::Shell::Error => e
if e.message =~ /repository not exported/
true
else
false
end
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment