Merge pull request #316023 from tie/puppet-bolt-gemconfig

This commit is contained in:
Sandro 2024-06-02 23:00:28 +02:00 committed by GitHub
commit 0a4fb7ab9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,6 @@
{
bundlerApp,
defaultGemConfig,
bundlerUpdateScript,
lib,
makeWrapper,
@ -14,10 +15,12 @@
exes = [ "bolt" ];
nativeBuildInputs = [ makeWrapper ];
gemConfig.bolt = attrs: {
# scripts in libexec will be executed by remote host,
# so shebangs should remain unchanged
dontPatchShebangs = true;
gemConfig = defaultGemConfig // {
bolt = attrs: {
# scripts in libexec will be executed by remote host,
# so shebangs should remain unchanged
dontPatchShebangs = true;
};
};
postBuild = ''