From 4a5fca7875bc5bd64bcf48f0e85014b2b9477451 Mon Sep 17 00:00:00 2001 From: Morgan Wattiez Date: Sat, 16 Nov 2019 13:01:53 +0100 Subject: [PATCH] git is the only prerequisite on CentOS --- README.md | 2 +- dot_scripts/bootstrap.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dbbd2f5..c98daed 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ## Prerequisites ### Centos -`yum install git which zip unzip ruby sudo -y` +`yum install git -y` ## Setup ``` diff --git a/dot_scripts/bootstrap.sh b/dot_scripts/bootstrap.sh index fa40f5f..3a2dce1 100755 --- a/dot_scripts/bootstrap.sh +++ b/dot_scripts/bootstrap.sh @@ -7,6 +7,7 @@ chmod +x ~/.scripts/*.sh case "$(uname -s)" in Linux) echo 'Linux' + yum install sudo -y sudo yum groupinstall 'Development Tools' -y sudo yum install git which zip unzip ruby curl file docker gcc make libxcrypt-compat vim-enhanced -y ;;