From f4b4a85669a366cbe37ec793419853eab2acf4be Mon Sep 17 00:00:00 2001 From: ClovertaTheTrilobita <168412973+ClovertaTheTrilobita@users.noreply.github.com> Date: Thu, 16 Oct 2025 22:40:31 +0300 Subject: [PATCH] =?UTF-8?q?fix(install):=20=E4=BF=AE=E5=A4=8Dredis?= =?UTF-8?q?=E5=AE=89=E8=A3=85=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pass 'redis' as an argument to installation functions for specific distributions. --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index e99779e..c63ae08 100755 --- a/install.sh +++ b/install.sh @@ -210,13 +210,13 @@ install_redis() { case "$id" in arch | manjaro) - install_arch + install_arch "redis" ;; ubuntu | debian | linuxmint | pop | elementary | neon | kali | raspbian) - install_debian + install_debian "redis" ;; fedora | centos | rhel | rocky | almalinux | ol) - install_rhel + install_rhel "redis" ;; *) # 用 ID_LIKE 兜底