diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-05-10 21:39:40 +0200 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-05-10 21:39:40 +0200 |
| commit | 09dd600159801b3b8fd6b95bf69e648f9e37d959 (patch) | |
| tree | c6961be106846628bf0d128586fc73685b895315 /guix/build/node-build-system.scm | |
| parent | eab4d0e18a616c71ab5f3af7f2915a9591ef04e8 (diff) | |
| parent | b4e5844700b2304bfde451322feb5797bf0c6179 (diff) | |
Merge branch 'master' into gnome-team.
Diffstat (limited to 'guix/build/node-build-system.scm')
| -rw-r--r-- | guix/build/node-build-system.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build/node-build-system.scm b/guix/build/node-build-system.scm index bee3792e93..93f7efbb2b 100644 --- a/guix/build/node-build-system.scm +++ b/guix/build/node-build-system.scm @@ -223,7 +223,7 @@ exist." (define* (configure #:key outputs inputs #:allow-other-keys) (let ((npm (string-append (assoc-ref inputs "node") "/bin/npm"))) - (invoke npm "--offline" "--ignore-scripts" "install") + (invoke npm "--offline" "--ignore-scripts" "--install-links" "install") #t)) (define* (build #:key inputs #:allow-other-keys) @@ -262,6 +262,7 @@ exist." "--offline" "--loglevel" "info" "--production" + "--install-links" "install" "../package.tgz") #t)) |
