mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
fix(bundler): install bundler with —no-document
This commit is contained in:
parent
9999f47bf6
commit
c016558ad3
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ async function getArtifacts(
|
|||
cmd += envVars.map(e => `-e ${e} `);
|
||||
cmd += `-w ${cwd} `;
|
||||
cmd += `renovate/ruby:${tag} bash -l -c "ruby --version && `;
|
||||
cmd += 'gem install bundler' + bundlerVersion;
|
||||
cmd += 'gem install bundler' + bundlerVersion + ' --no-document';
|
||||
cmd += ' && bundle';
|
||||
} else {
|
||||
logger.info('Running bundler via global bundler');
|
||||
|
|
Loading…
Reference in a new issue