We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b33212 commit f3f7f71Copy full SHA for f3f7f71
nix/package.nix
@@ -3,6 +3,7 @@
3
stdenvNoCC,
4
cacert,
5
nodejs,
6
+ bash,
7
yarn-berry,
8
makeWrapper
9
}:
@@ -90,7 +91,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
90
91
92
cp -r ./dist/* $out/lib/
93
- echo -e "#!/usr/bin/env sh\n${lib.getExe nodejs} $out/lib/server/entry.mjs" > $out/bin/website
94
+ echo -e "#!/usr/bin/env ${lib.getExe bash}\n${lib.getExe nodejs} $out/lib/server/entry.mjs" > $out/bin/website
95
chmod +x $out/bin/website
96
97
runHook postInstall
0 commit comments