tests.pnpm.pnpm_11: fix binary

During refactoring, we forgot to update the lib path in the wrapper.

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu
2026-05-12 22:45:19 +02:00
parent 67d127c721
commit 342203f139
+3 -3
View File
@@ -44,8 +44,8 @@ stdenv.mkDerivation (finalAttrs: {
install -Dm644 -t $out/lib/pnpm-11-test dist/index.js
makeWrapper ${lib.getExe nodejs} $out/bin/pnpm11test \
--add-flags "$out/lib/pnpm11test"
makeWrapper ${lib.getExe nodejs} $out/bin/pnpm-11-test \
--add-flags "$out/lib/pnpm-11-test"
runHook postInstall
'';
@@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
license = lib.licenses.mit;
mainProgram = "pnpm11test";
mainProgram = "pnpm-11-test";
inherit (pnpm.meta) maintainers;
};
})