Fix token interpolation when setting the Github remote

This commit is contained in:
Douglas Barbosa Alexandre 2017-05-11 17:29:42 -03:00
parent ea5d43a3b8
commit c5e4e676e3
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
require_relative 'error'
module Github
class Import
include Gitlab::ShellAdapter
@ -79,7 +80,7 @@ module Github
def fetch_repository
begin
project.create_repository unless project.repository.exists?
project.repository.add_remote('github', "https://{options.fetch(:token)}@github.com/#{repo}.git")
project.repository.add_remote('github', "https://#{options.fetch(:token)}@github.com/#{repo}.git")
project.repository.set_remote_as_mirror('github')
project.repository.fetch_remote('github', forced: true)
rescue Gitlab::Shell::Error => e