rpm_dirs_found = True
if not rpm_dirs_found:
- return("There are no packages in %s" % self.deploy_dir)
+ bb.note("There are no packages in %s" % self.deploy_dir)
+ return
nproc = multiprocessing.cpu_count()
pool = bb.utils.multiprocessingpool(nproc)
(opkg_index_cmd, pkgs_file, pkgs_file, pkgs_dir))
if len(index_cmds) == 0:
- return("There are no packages in %s!" % self.deploy_dir)
+ bb.note("There are no packages in %s!" % self.deploy_dir)
+ return
nproc = multiprocessing.cpu_count()
pool = bb.utils.multiprocessingpool(nproc)
deb_dirs_found = True
if not deb_dirs_found:
- return("There are no packages in %s" % self.deploy_dir)
+ bb.note("There are no packages in %s" % self.deploy_dir)
+ return
nproc = multiprocessing.cpu_count()
pool = bb.utils.multiprocessingpool(nproc)