summaryrefslogtreecommitdiff
path: root/app/services/ci/create_pipeline_builds_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/ci/create_pipeline_builds_service.rb')
-rw-r--r--app/services/ci/create_pipeline_builds_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/ci/create_pipeline_builds_service.rb b/app/services/ci/create_pipeline_builds_service.rb
index 4cbbd366cc4..70fb2c5e38f 100644
--- a/app/services/ci/create_pipeline_builds_service.rb
+++ b/app/services/ci/create_pipeline_builds_service.rb
@@ -34,8 +34,8 @@ module Ci
end
def new_builds
- @new_builds ||= pipeline.config_builds_attributes
- .reject { |build| existing_build_names.include?(build[:name]) }
+ @new_builds ||= pipeline.config_builds_attributes.
+ reject { |build| existing_build_names.include?(build[:name]) }
end
def existing_build_names