From a937e6de50d87ce8e0256e266475004354c9f318 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 21 May 2022 02:47:06 -0400 Subject: [PATCH] fix: confirm installation of universe packages when installing on ubuntu This fixes installs stalling on Ubuntu 22.04 because of necessary confirmation of the addition. Closes #5191 --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index f1780bd4f..dac9ee095 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -63,7 +63,7 @@ install-requirements() { apt-get -qq -y --no-install-recommends install software-properties-common fi - add-apt-repository universe >/dev/null + add-apt-repository -y universe >/dev/null apt-get update -qq >/dev/null ;; esac