lfam pushed a commit to branch master
in repository guix.
commit f2ea722ae731d6094948d58b8287213d056a178a
Author: Leo Famulari <[email protected]>
Date: Mon Jan 23 16:05:49 2017 -0500
gnu: node: Don't replace 'sh' reference with 'bash'.
* gnu/packages/node.scm (node)[arguments]: Use (which "sh") instead of
(which "bash") in 'patch-files' phase.
---
gnu/packages/node.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 617dffc..2df7816 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -64,7 +64,7 @@
"lib/internal/v8_prof_polyfill.js"
"test/parallel/test-stdio-closed.js")
(("'/bin/sh'")
- (string-append "'" (which "bash") "'")))
+ (string-append "'" (which "sh") "'")))
;; Fix hardcoded /usr/bin/env references.
(substitute*
'("test/parallel/test-child-process-default-options.js"