]> code.ossystems Code Review - openembedded-core.git/commitdiff
npm: Remove unnecessary configs argument from npm run command
authorStefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Wed, 20 Oct 2021 07:40:15 +0000 (09:40 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 23 Oct 2021 16:41:46 +0000 (17:41 +0100)
Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/npm.bbclass

index 547c531883bf197606b2bc10332e9051fe87762f..ba50fcac203765fa3100f1d9db176d6a10fcd6f9 100644 (file)
@@ -259,7 +259,7 @@ python npm_do_compile() {
         # Pack and install the main package
         tarball = npm_pack(env, d.getVar("NPM_PACKAGE"), tmpdir)
         cmd = "npm install %s %s" % (shlex.quote(tarball), d.getVar("EXTRA_OENPM"))
-        env.run(cmd, args=args, configs=configs)
+        env.run(cmd, args=args)
 }
 
 npm_do_install() {