Add requested comments specific to debian

This commit is contained in:
Paweł T. Jochym
2022-09-15 17:34:25 +02:00
committed by GitHub
parent d0204e23ac
commit 45abba3c37

View File

@@ -421,6 +421,7 @@ def main():
["apt-get", "install", "--yes", "software-properties-common"],
env=apt_get_adjusted_env,
)
# Section "universe" exists and is required only in ubuntu.
if distro == "ubuntu":
run_subprocess(["add-apt-repository", "universe", "--yes"])
run_subprocess(["apt-get", "update"])
@@ -433,7 +434,7 @@ def main():
"python3-venv",
"python3-pip",
"git",
"sudo",
"sudo", # sudo is missing in default debian install
],
env=apt_get_adjusted_env,
)