Skip to content

Commit

Permalink
DEBUG ONLY: remove apt-get git install
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Oct 28, 2021
1 parent f4fdf20 commit 512432f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 512432f

Please sign in to comment.