From 36872787fde08f9e4fa18bf5f6dfe09641425fb2 Mon Sep 17 00:00:00 2001 From: maxcerny <43910217+maxcerny@users.noreply.github.com> Date: Fri, 4 Jun 2021 11:21:23 +0200 Subject: [PATCH] Update xo-install.sh Fix freezing on checking for universe. --- xo-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xo-install.sh b/xo-install.sh index b344712..c05cec0 100755 --- a/xo-install.sh +++ b/xo-install.sh @@ -202,8 +202,8 @@ function InstallDependenciesDeb { if [[ $OSNAME == "Ubuntu" ]]; then echo printprog "OS Ubuntu so making sure universe repository is enabled" - cmdlog "add-apt-repository universe" - add-apt-repository universe >>$LOGFILE 2>&1 + cmdlog "add-apt-repository -y universe" + add-apt-repository -y universe >>$LOGFILE 2>&1 printok "OS Ubuntu so making sure universe repository is enabled" fi