Merge pull request #131883 from jonringer/fix-vault-bin-again

vault-bin: correct wrapping arguments
This commit is contained in:
Sandro 2021-07-29 13:57:43 +00:00 committed by GitHub
commit 086775bef3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,8 +42,8 @@ in stdenv.mkDerivation {
echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault
'' + lib.optionalString stdenv.isLinux ''
wrapProgram $out/bin/vault \
--prefix PATH ${lib.makeBinPath [ gawk glibc ]}
'' + ''
--prefix PATH : ${lib.makeBinPath [ gawk glibc ]}
runHook postInstall
'';