-
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
45 additions
and
8 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 e5b04d0121240e7cd8f7d70b28b8f0d763c85bc1 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..4ec64761 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 | ||
@@ -58,6 +58,8 @@ module Runtime # Rewrite from D:/a/rubyinstaller2/rubyinstaller2/lib/ruby_instal | ||
yield File.join(File.dirname(RbConfig::TOPDIR), "msys64") | ||
yield File.join(File.dirname(RbConfig::TOPDIR), "msys32") | ||
|
||
+ raise MsysNotFound, "MSYS2 could not be found" | ||
+ | ||
# If msys2 is installed at the default location | ||
yield "c:/msys64" | ||
yield "c:/msys32" | ||
-- | ||
2.34.1 | ||
|