]> code.ossystems Code Review - openembedded-core.git/commitdiff
classes/npm: set HOME during do_install
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Mon, 6 Feb 2017 20:45:40 +0000 (09:45 +1300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 7 Feb 2017 14:48:55 +0000 (14:48 +0000)
In do_compile we set HOME so that ~/.npm* only get created in the work
directory; we need to do the same in do_install as well or they'll go
into the user's home directory which we do not want.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/npm.bbclass

index 1c778a763745fae6f41ee75965b9829a19bd0b0a..c5380405af9bd067a11e41c42fbfa6992bfce46a 100644 (file)
@@ -32,6 +32,9 @@ npm_do_compile() {
 }
 
 npm_do_install() {
+       # changing the home directory to the working directory, the .npmrc will
+       # be created in this directory
+       export HOME=${WORKDIR}
        mkdir -p ${NPM_INSTALLDIR}/
        npm install --prefix ${D}${prefix} -g --arch=${NPM_ARCH} --target_arch=${NPM_ARCH} --production --no-registry
        if [ -d ${D}${prefix}/etc ] ; then