mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-29 05:18:11 +03:00
RockyLinux support has been added
RockyLinux support has been added for install-gui.sh
This commit is contained in:
parent
bac1b8db6b
commit
f011bcf90d
@ -18,17 +18,23 @@ if [ "$(uname)" = "Linux" ]; then
|
||||
# Debian/Ubuntu
|
||||
UBUNTU=true
|
||||
sudo apt-get install -y npm nodejs libxss1
|
||||
elif type yum && [ ! -f "/etc/redhat-release" ] && [ ! -f "/etc/centos-release" ]; then
|
||||
elif type yum && [ ! -f "/etc/redhat-release" ] && [ ! -f "/etc/centos-release" ] && [ ! -f /etc/rocky-release ]; then
|
||||
# AMZN 2
|
||||
echo "Installing on Amazon Linux 2"
|
||||
curl -sL https://rpm.nodesource.com/setup_12.x | sudo bash -
|
||||
sudo yum install -y nodejs
|
||||
elif type yum && [ -f /etc/redhat-release ] || [ -f /etc/centos-release ]; then
|
||||
elif type yum && [ ! -f /etc/rocky-release ] && [ -f /etc/redhat-release ] || [ -f /etc/centos-release ]; then
|
||||
# CentOS or Redhat
|
||||
echo "Installing on CentOS/Redhat"
|
||||
curl -sL https://rpm.nodesource.com/setup_12.x | sudo bash -
|
||||
sudo yum install -y nodejs
|
||||
fi
|
||||
elif type yum && [ -f /etc/rocky-release ]; then
|
||||
# RockyLinux
|
||||
echo "Installing on RockyLinux"
|
||||
dnf module enable nodejs:12
|
||||
sudo dnf install -y nodejs
|
||||
fi
|
||||
|
||||
elif [ "$(uname)" = "Darwin" ] && type brew && ! npm version >/dev/null 2>&1; then
|
||||
# Install npm if not installed
|
||||
brew install npm
|
||||
|
Loading…
Reference in New Issue
Block a user