guix: node-build-system: Do not symlink /bin.

* guix/build/node-build-system.scm (install): Do not add a symlink for
/bin.
This commit is contained in:
Julien Lepiller 2020-02-25 00:26:16 +01:00
parent f613d459be
commit c23b42dd55
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 1 additions and 4 deletions

View File

@ -133,10 +133,7 @@ the @file{bin} directory."
(symlink (string-append target "/node_modules/" modulename "/"
value)
(string-append binaries "/" key))))))
binary-configuration))
(else
(symlink (string-append target "/node_modules/" modulename "/bin")
binaries)))
binary-configuration)))
(when dependencies
(mkdir-p
(string-append target "/node_modules/" modulename "/node_modules"))