From 2aa72bcbd71b25912a96edb113c8d3bcf9748575 Mon Sep 17 00:00:00 2001 From: Jason Hiser <jdhiser@gmail.com> Date: Wed, 5 Dec 2018 08:18:20 -0500 Subject: [PATCH] fixed spelling in output added -y flag to yum epel install --- get-peasoup-packages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/get-peasoup-packages.sh b/get-peasoup-packages.sh index 947e2242e..4b1dc8ce8 100755 --- a/get-peasoup-packages.sh +++ b/get-peasoup-packages.sh @@ -91,7 +91,7 @@ fi which apt-get 1> /dev/null 2> /dev/null if [[ $? != 0 ]]; then #setup extra repositories on centos - sudo yum install epel-release + sudo yum install epel-release -y fi for arg in $args; do @@ -128,4 +128,4 @@ cd daffy sudo ./get-packages.sh cd $orig_dir -echo Intsalling packages complete. +echo Installing packages complete. -- GitLab