bitbake: fetch2/npm: Enable fetcher

For some reason the enablement piece of the patch went missing, add it.

(Bitbake rev: 0270b5a3873ed0aeca3a66198c87a6164fb644b8)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2016-02-28 11:56:45 +00:00
parent 1c060d738a
commit 2e27c4bf23
1 changed files with 2 additions and 0 deletions

View File

@ -1741,6 +1741,7 @@ from . import hg
from . import osc
from . import repo
from . import clearcase
from . import npm
methods.append(local.Local())
methods.append(wget.Wget())
@ -1757,3 +1758,4 @@ methods.append(hg.Hg())
methods.append(osc.Osc())
methods.append(repo.Repo())
methods.append(clearcase.ClearCase())
methods.append(npm.Npm())