Bugfix package install subprocess
This commit is contained in:
parent
96510ebdca
commit
005925c6cc
1 changed files with 2 additions and 2 deletions
|
@ -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__":
|
||||
|
|
Loading…
Reference in a new issue