diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-11-23 10:06:50 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-01 21:30:54 +0000 |
commit | 656348dff9bc9dd1cafc8fff11e5e374e3667f0f (patch) | |
tree | a3119c1ae4e22689081b9fcc71529098b58af151 | |
parent | 8b8f04226ebf464fa61c05ca7af7c6cbda392339 (diff) | |
download | openembedded-core-656348dff9bc9dd1cafc8fff11e5e374e3667f0f.tar.gz openembedded-core-656348dff9bc9dd1cafc8fff11e5e374e3667f0f.tar.bz2 openembedded-core-656348dff9bc9dd1cafc8fff11e5e374e3667f0f.zip |
devtool: upgrade: remove erroneous error when not renaming recipe
If we're upgrading a git recipe the recipe file usually won't need
renaming; for some unknown reason we were throwing an error here which
isn't correct.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | scripts/lib/devtool/upgrade.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/lib/devtool/upgrade.py b/scripts/lib/devtool/upgrade.py index 14eff665b6..8851a6edbe 100644 --- a/scripts/lib/devtool/upgrade.py +++ b/scripts/lib/devtool/upgrade.py @@ -117,7 +117,6 @@ def _rename_recipe_file(bpn, oldpv, newpv, path): recipe = "%s_git.bb" % bpn if os.path.isfile(os.path.join(path, recipe)): newrecipe = recipe - raise DevtoolError("Original recipe not found on workspace") return os.path.join(path, newrecipe) def _rename_recipe_files(bpn, oldpv, newpv, path): |