Skip to content

Commit

Permalink
Merge pull request #1276 from Homebrew/revert-1272-patch-1
Browse files Browse the repository at this point in the history
Revert "Run tests on Ruby 3.1"
  • Loading branch information
MikeMcQuaid authored Jan 5, 2024
2 parents e4798d8 + 67fe50c commit 48adf41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
ruby-version: '2.6'
bundler-cache: true

- name: Run RSpec tests
Expand Down
2 changes: 1 addition & 1 deletion lib/bundle/bundle.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def system(cmd, *args, verbose: false)
logs << buf
end
Process.wait(pipe.pid)
success = $CHILD_STATUS.dup.success?
success = $CHILD_STATUS.success?
pipe.close
end
puts logs.join unless success
Expand Down

0 comments on commit 48adf41

Please sign in to comment.