mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
fix(ruby): use hostType=rubygems for bundler env (#11196)
This commit is contained in:
parent
0009de490d
commit
f54ff20170
2 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ The following details the most common/popular manager artifacts updating and how
|
|||
|
||||
### bundler
|
||||
|
||||
`hostRules` with `hostType=bundler` are converted into environment variables which Bundler supports.
|
||||
`hostRules` with `hostType=rubygems` are converted into environment variables which Bundler supports.
|
||||
|
||||
### composer
|
||||
|
||||
|
|
|
@ -125,7 +125,7 @@ export async function updateArtifacts(
|
|||
];
|
||||
|
||||
const bundlerHostRules = findAllAuthenticatable({
|
||||
hostType: 'bundler',
|
||||
hostType: 'rubygems',
|
||||
});
|
||||
|
||||
const bundlerHostRulesVariables = bundlerHostRules.reduce(
|
||||
|
|
Loading…
Reference in a new issue