From d54b96d613441f4ac350b10651d4d5d97ab460b8 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Mon, 1 Sep 2025 07:28:39 +0200 Subject: bin/doctor: Allow ARM64 as well MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- bin/doctor.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/doctor.rb b/bin/doctor.rb index 3b0093a..fc1a25f 100755 --- a/bin/doctor.rb +++ b/bin/doctor.rb @@ -21,7 +21,8 @@ require 'pathname' ## # Early checks. -raise 'Only Linux on x86 supported!' if RUBY_PLATFORM != 'x86_64-linux' +raise 'Only Linux on x86/ARM64 supported!' if RUBY_PLATFORM != 'x86_64-linux' && + RUBY_PLATFORM != 'aarch64-linux' raise 'Only CRuby, sorry!' if RUBY_ENGINE != 'ruby' ## -- cgit v1.2.3