-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a patch for RubyInstaller to avoid crash on start up
When a non-ASCII key exists under the registry key `SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/`, Fluentd fails to start workers due to `Encoding::UndefinedConversionError`. This patch avoid this issue. Fix #616 Signed-off-by: Takuro Ashie <[email protected]>
- Loading branch information
Showing
3 changed files
with
44 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...age/patches/rubyinstaller/0001-Skip-searching-registry-for-detecting-MSYS2-installa.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
From 2b87f213db0e73ad7e55a53b0a75a263a92e9709 Mon Sep 17 00:00:00 2001 | ||
From: Takuro Ashie <[email protected]> | ||
Date: Fri, 16 Feb 2024 13:50:04 +0900 | ||
Subject: [PATCH] Skip searching registry for detecting MSYS2 installation | ||
|
||
It causes crash when the registry key contains a non-ASCII subkey and | ||
ruby is executed with '-Eascii-8bit:ascii-8bit'. | ||
In addition, make sure to eliminate influences of external MSYS2. | ||
|
||
Signed-off-by: Takuro Ashie <[email protected]> | ||
--- | ||
.../3.2.0/ruby_installer/runtime/msys2_installation.rb | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
diff --git a/lib/ruby/site_ruby/3.2.0/ruby_installer/runtime/msys2_installation.rb b/lib/ruby/site_ruby/3.2.0/ruby_installer/runtime/msys2_installation.rb | ||
index ae1db823..90b4928a 100644 | ||
--- a/lib/ruby/site_ruby/3.2.0/ruby_installer/runtime/msys2_installation.rb | ||
+++ b/lib/ruby/site_ruby/3.2.0/ruby_installer/runtime/msys2_installation.rb | ||
@@ -62,6 +62,8 @@ module Runtime # Rewrite from D:/a/rubyinstaller2/rubyinstaller2/lib/ruby_instal | ||
yield "c:/msys64" | ||
yield "c:/msys32" | ||
|
||
+ raise MsysNotFound, "MSYS2 could not be found" | ||
+ | ||
# If msys2 is installed per installer.exe | ||
require "win32/registry" | ||
[ | ||
-- | ||
2.34.1 | ||
|