We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1856367 commit 1cf57dfCopy full SHA for 1cf57df
BUILD-WINDOWS.md
@@ -127,14 +127,14 @@ gem install rugged
127
This uses the Ruby library management tool `gem` to install rugged which is used to
128
store the code diffs in a local Git repository.
129
130
-Note - with Ruby 3.3.1 you will need to modify line 321 of `lib\ruby\3.3.0\win32\registry.rb\` from:
+Note - with Ruby 3.3.1 you will need to modify line 321 of `lib\ruby\3.3.0\win32\registry.rb` from:
131
132
```
133
data = "\0".force_encoding('ASCII-8BIT') * unpackdw(size)
134
135
to
136
137
-data = String.new("\0").force_encoding('ASCII-8BIT') * unpackdw(size)
+data = "\0".b * unpackdw(size)
138
139
140
### 1.5 Install Elixir
0 commit comments