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
+7 -4
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 = ''