From 67e98617295c07612a1550f4a92c259b4d2fdb3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A2=E3=83=B3=E3=83=89=E3=83=AA=E3=83=BC=E3=83=BB?= =?UTF-8?q?=E3=82=A2=E3=83=B3=E3=83=89=E3=83=AA?= Date: Thu, 7 Aug 2025 05:56:00 +0700 Subject: [PATCH] Update helpers.rb --- lib/install/helpers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/install/helpers.rb b/lib/install/helpers.rb index 011e21d..2c4849d 100644 --- a/lib/install/helpers.rb +++ b/lib/install/helpers.rb @@ -19,7 +19,7 @@ def using_bun? end def tool_exists?(tool) - system "command -v #{tool} > /dev/null" + system("command", "-v", tool, out: File::NULL, err: File::NULL) end def add_package_json_script(name, script, run_script=true)