Skip to content

Commit

Permalink
feat: support other RHEL distros
Browse files Browse the repository at this point in the history
  • Loading branch information
id committed May 14, 2024
1 parent dd5b7d3 commit c9ff632
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions zsh-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ install_dependencies() {
$Sudo yum install -y git zsh
$Sudo yum install -y ncurses-compat-libs # this is required for AMZN Linux (ref: https://github.com/emqx/emqx/issues/2503)
;;
rhel|fedora|centos|rocky)
$Sudo yum update -y
$Sudo yum install -y git zsh
;;
*)
$Sudo apt-get update
$Sudo apt-get -y install git curl zsh locales
Expand Down

0 comments on commit c9ff632

Please sign in to comment.