From 512432f920cd763181dc79a3ae46e5e079dfe0e0 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Thu, 28 Oct 2021 16:33:43 +0200 Subject: [PATCH] DEBUG ONLY: remove apt-get git install --- bootstrap/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/bootstrap.py b/bootstrap/bootstrap.py index fdac4d8b4..c48e7f7e3 100644 --- a/bootstrap/bootstrap.py +++ b/bootstrap/bootstrap.py @@ -328,7 +328,7 @@ def serve_forever(server): run_subprocess(['apt-get', 'install', '--yes', 'software-properties-common'], env=apt_get_adjusted_env) 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) + run_subprocess(['apt-get', 'install', '--yes', 'python3', 'python3-venv', 'python3-pip'], env=apt_get_adjusted_env) logger.info('Setting up virtual environment at {}'.format(hub_prefix)) os.makedirs(hub_prefix, exist_ok=True)