hci: fix wrapper arguments escaping

This commit is contained in:
Naïm Favier 2022-05-06 18:33:01 +02:00
parent 2f341cd427
commit 75c1da2d10
No known key found for this signature in database
GPG key ID: 49B07322580B7EE2

View file

@ -12,7 +12,7 @@ let
${o.postInstall or ""}
mkdir -p $out/libexec
mv $out/bin/hci $out/libexec
makeWrapper $out/libexec/hci $out/bin/hci --prefix PATH : ${makeBinPath bundledBins}
makeWrapper $out/libexec/hci $out/bin/hci --prefix PATH : ${lib.escapeShellArg (makeBinPath bundledBins)}
'';
})
(addBuildDepends [ makeWrapper ] (justStaticExecutables haskellPackages.hercules-ci-cli));