Skip to content

Commit

Permalink
Remove redundant 'exec'
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewd committed Nov 18, 2024
1 parent 35aa893 commit dc76e37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pipelines/rails-ci/pipeline.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
ruby_group build_context.default_ruby do
label "lint"

bundle "exec rubocop --parallel", label: "rubocop"
bundle "rubocop --parallel", label: "rubocop"

if build_context.support_guides_lint?
rake "guides", task: "guides:lint"
end

if build_context.has_railspect?
bundle "exec tools/railspect changelogs .", label: "changelogs"
bundle "exec tools/railspect configuration .", label: "configuration"
bundle "tools/railspect changelogs .", label: "changelogs"
bundle "tools/railspect configuration .", label: "configuration"
end
end

Expand Down

0 comments on commit dc76e37

Please sign in to comment.