Syntax error for joining list of strings.
This commit is contained in:
parent
81f76e7e58
commit
ea70c117f9
|
@ -570,8 +570,8 @@ class Build():
|
||||||
|
|
||||||
# We download the missing dependencies leveraging apt
|
# We download the missing dependencies leveraging apt
|
||||||
subprocess.run(shlex.split(
|
subprocess.run(shlex.split(
|
||||||
r"apt download " + debs.join(' ')),
|
r"apt download " + str.join(" " , debs)
|
||||||
cwd=downloadpath, check=True)
|
), cwd=downloadpath, check=True)
|
||||||
|
|
||||||
# then we install them inside the AppDir
|
# then we install them inside the AppDir
|
||||||
subprocess.run(shlex.split(
|
subprocess.run(shlex.split(
|
||||||
|
|
Loading…
Reference in New Issue