Commit 0d499ce2 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'fix-github-clone-wiki' into 'master'

GitHub - Fix token interpolation when cloning wiki repository

See merge request !12107
parents 44b806d0 c66bcdd9
---
title: Github - Fix token interpolation when cloning wiki repository
merge_request:
author:
......@@ -92,7 +92,7 @@ module Github
end
def fetch_wiki_repository
wiki_url = "https://{options.fetch(:token)}@github.com/#{repo}.wiki.git"
wiki_url = "https://#{options.fetch(:token)}@github.com/#{repo}.wiki.git"
wiki_path = "#{project.path_with_namespace}.wiki"
unless project.wiki.repository_exists?
......
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