Bugfix package install subprocess
This commit is contained in:
parent
d8f73ae16d
commit
897457e24e
|
@ -497,12 +497,12 @@ def web_installs():
|
||||||
|
|
||||||
for package in WEB_INSTALLS:
|
for package in WEB_INSTALLS:
|
||||||
if not os.path.exists(package["dest"]) and prompt_user(package["name"]):
|
if not os.path.exists(package["dest"]) and prompt_user(package["name"]):
|
||||||
subprocess.call(
|
subprocess.call([
|
||||||
"curl",
|
"curl",
|
||||||
"--output",
|
"--output",
|
||||||
package["dest"],
|
package["dest"],
|
||||||
package["url"],
|
package["url"],
|
||||||
)
|
])
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Reference in a new issue