diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-11 15:06:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-11 17:09:17 +0000 |
commit | 50b85e485533fe6024dcc57b7bfd0188cd78a36a (patch) | |
tree | de28ef1cbf6cb7d7f9c06f841eee386ac4f91c23 | |
parent | e21c967bd4d1a20ceee869e6cd7020a066bdc497 (diff) | |
download | poky-50b85e485533fe6024dcc57b7bfd0188cd78a36a.tar.gz |
scripts/oe-package-browser: Handle no packages being built
Give the user a proper error message if there aren't packages built,
rather than a less friendly traceback.
[YOCTO #14619]
(From OE-Core rev: b14c176b7dd74b7d63ca0f72e6e00fbf209f5a0b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/oe-pkgdata-browser | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/oe-pkgdata-browser b/scripts/oe-pkgdata-browser index e07005b807..a3a381923b 100755 --- a/scripts/oe-pkgdata-browser +++ b/scripts/oe-pkgdata-browser | |||
@@ -236,6 +236,8 @@ class PkgUi(): | |||
236 | update_deps("RPROVIDES", "Provides: ", self.provides_label, clickable=False) | 236 | update_deps("RPROVIDES", "Provides: ", self.provides_label, clickable=False) |
237 | 237 | ||
238 | def load_recipes(self): | 238 | def load_recipes(self): |
239 | if not os.path.exists(pkgdata): | ||
240 | sys.exit("Error: Please ensure %s exists by generating packages before using this tool." % pkgdata) | ||
239 | for recipe in sorted(os.listdir(pkgdata)): | 241 | for recipe in sorted(os.listdir(pkgdata)): |
240 | if os.path.isfile(os.path.join(pkgdata, recipe)): | 242 | if os.path.isfile(os.path.join(pkgdata, recipe)): |
241 | self.recipe_iters[recipe] = self.recipe_store.append([recipe]) | 243 | self.recipe_iters[recipe] = self.recipe_store.append([recipe]) |