Syntax error for joining list of strings. - 1

This commit is contained in:
emiliano.vavassori 2024-08-22 22:58:27 +02:00
parent ea70c117f9
commit 2554e4957d
1 changed files with 1 additions and 1 deletions

View File

@ -570,7 +570,7 @@ 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 " + str.join(" " , debs) r"apt download " + " ".join(debs)
), cwd=downloadpath, check=True) ), cwd=downloadpath, check=True)
# then we install them inside the AppDir # then we install them inside the AppDir