hci: fix wrapper arguments escaping
This commit is contained in:
parent
2f341cd427
commit
75c1da2d10
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue