Bugfix package install subprocess

This commit is contained in:
Akemi Izuko 2023-12-23 20:14:23 -07:00
parent 96510ebdca
commit 005925c6cc
Signed by: akemi
GPG key ID: 8DE0764E1809E9FC

View file

@ -497,12 +497,12 @@ def web_installs():
for package in WEB_INSTALLS:
if not os.path.exists(package["dest"]) and prompt_user(package["name"]):
subprocess.call(
subprocess.call([
"curl",
"--output",
package["dest"],
package["url"],
)
])
if __name__ == "__main__":