Skip to content

Commit

Permalink
Work around UTF-8 issue in Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lloeki committed Jun 27, 2024
1 parent 421cc07 commit 614dfac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require 'os'

Dir.glob('tasks/*.rake').each { |r| import r }

TEST_METADATA = eval(File.read('Matrixfile')).freeze
TEST_METADATA = eval(File.open('Matrixfile', 'r:UTF-8').read).freeze

namespace :test do
desc 'Run all tests'
Expand Down

0 comments on commit 614dfac

Please sign in to comment.