1Fixes test/parallel/test-node-run.js subtest.
2
3Note that this techinically depends on an impurity during build, see
4also https://github.com/NixOS/nix/issues/6081. Currently stdenv allows
5/bin/sh as an impure host dependency on Darwin, so we are guaranteed to
6have it to certain degree, although it is very hacky.
7
8--- a/test/fixtures/run-script/node_modules/.bin/positional-args
9+++ b/test/fixtures/run-script/node_modules/.bin/positional-args
10@@ -1,3 +1,3 @@
11-#!/bin/bash
12+#!/bin/sh
13 echo "Arguments: '$@'"
14 echo "The total number of arguments are: $#"