diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-07-05 21:24:04 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-07-05 21:24:04 +0200 |
commit | cca9242085d73dff66a946af8a740a4f7419f84c (patch) | |
tree | c65c67f3990bc1bb2204cedbcfeff4919d3f565c /lib | |
parent | 1a581a6afcc3ac94dcc2208412bd80861dba84ab (diff) | |
parent | a8a4ca17e444c761ed9fc5dca4542cfec79abe55 (diff) | |
download | gitlab-ce-cca9242085d73dff66a946af8a740a4f7419f84c.tar.gz |
Merge commit 'a8a4ca17e444c761ed9fc5dca4542cfec79abe55' into 32815--Add-Custom-CI-Config-Path32815--Add-Custom-CI-Config-Path
* commit 'a8a4ca17e444c761ed9fc5dca4542cfec79abe55':
Remove IIFEs around several javascript classes
Handles realtime with 2 states for environments table
Revert "Merge branch '18000-remember-me-for-oauth-login' into 'master'"
Disable Flipper memoizer in tests to avoid transient failures
fix sidebar padding for full-width items (Time Tracking help)
Replace 'snippets/snippets.feature' spinach with rspec
32838 Add wells to admin dashboard overview to fix spacing problems
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/gitlab/info.rake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/info.rake b/lib/tasks/gitlab/info.rake index e9fb6a008b0..e3883278886 100644 --- a/lib/tasks/gitlab/info.rake +++ b/lib/tasks/gitlab/info.rake @@ -42,7 +42,8 @@ namespace :gitlab do http_clone_url = project.http_url_to_repo ssh_clone_url = project.ssh_url_to_repo - omniauth_providers = Gitlab.config.omniauth.providers.map { |provider| provider['name'] } + omniauth_providers = Gitlab.config.omniauth.providers + omniauth_providers.map! { |provider| provider['name'] } puts "" puts "GitLab information".color(:yellow) |