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