Syntax error for joining list of strings.

This commit is contained in:
emiliano.vavassori 2024-08-22 22:55:26 +02:00
parent 81f76e7e58
commit ea70c117f9
1 changed files with 2 additions and 2 deletions

View File

@ -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(