mirror of
https://github.com/ClovertaTheTrilobita/cellpose-web.git
synced 2026-04-01 23:14:50 +00:00
fix(install): 修复redis安装问题
Pass 'redis' as an argument to installation functions for specific distributions.
This commit is contained in:
parent
2766c3496a
commit
f4b4a85669
1 changed files with 3 additions and 3 deletions
|
|
@ -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 兜底
|
||||
|
|
|
|||
Loading…
Reference in a new issue