From 897457e24ed23a2d21279ab8e3994005f1199d6f Mon Sep 17 00:00:00 2001 From: Akemi Izuko Date: Mon, 20 Nov 2023 20:29:25 -0700 Subject: [PATCH] Bugfix package install subprocess --- package_install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_install.py b/package_install.py index 708b745..8a72a7e 100755 --- a/package_install.py +++ b/package_install.py @@ -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__":