From 3596039bbdf62b3f73825da1ff01f00878c9d22e Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 20 Oct 2021 10:24:47 +0200 Subject: [PATCH] ci: ensure to --yes adding apt-get repository --- bootstrap/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/bootstrap.py b/bootstrap/bootstrap.py index e66fcb6..23739df 100644 --- a/bootstrap/bootstrap.py +++ b/bootstrap/bootstrap.py @@ -325,7 +325,7 @@ def main(): apt_get_adjusted_env["DEBIAN_FRONTEND"] = "noninteractive" run_subprocess(['apt-get', 'update']) run_subprocess(['apt-get', 'install', '--yes', 'software-properties-common'], env=apt_get_adjusted_env) - run_subprocess(['add-apt-repository', 'universe']) + run_subprocess(['add-apt-repository', 'universe', '--yes']) run_subprocess(['apt-get', 'update']) run_subprocess(['apt-get', 'install', '--yes', 'python3', 'python3-venv', 'python3-pip', 'git'], env=apt_get_adjusted_env)