Missing directory.

This commit is contained in:
emiliano.vavassori 2024-08-22 23:01:26 +02:00
parent 2554e4957d
commit 895b0978cf
1 changed files with 1 additions and 0 deletions

View File

@ -564,6 +564,7 @@ class Build():
# We need, first, to download those packages. # We need, first, to download those packages.
debs = [ x.split(":")[0] for x in debian_packages ] debs = [ x.split(":")[0] for x in debian_packages ]
downloadpath = os.path.abspath(os.path.join(self.builddir, 'dependencies')) downloadpath = os.path.abspath(os.path.join(self.builddir, 'dependencies'))
os.makedirs(downloadpath)
if self.verbose: if self.verbose:
print("Downloading missing dependencies, please wait.") print("Downloading missing dependencies, please wait.")