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
|
||||
subprocess.run(shlex.split(
|
||||
r"apt download " + debs.join(' ')),
|
||||
cwd=downloadpath, check=True)
|
||||
r"apt download " + str.join(" " , debs)
|
||||
), cwd=downloadpath, check=True)
|
||||
|
||||
# then we install them inside the AppDir
|
||||
subprocess.run(shlex.split(
|
||||
|
|
Loading…
Reference in New Issue