match/lib/match/storage/git_storage.rb in fastlane-2.132.0.beta.20190926200023 vs match/lib/match/storage/git_storage.rb in fastlane-2.132.0.beta.20190927200017

- old
+ new

@@ -67,10 +67,10 @@ # No existing working directory, creating a new one now self.working_directory = Dir.mktmpdir command = "git clone #{self.git_url.shellescape} #{self.working_directory.shellescape}" - command << " -c http.extraheader='AUTHORIZATION: basic #{self.git_basic_authorization.shellescape}'" unless self.git_basic_authorization.nil? + command << " -c http.extraheader='AUTHORIZATION: basic #{self.git_basic_authorization}'" unless self.git_basic_authorization.nil? if self.shallow_clone command << " --depth 1 --no-single-branch" elsif self.clone_branch_directly command += " -b #{self.branch.shellescape} --single-branch"