mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +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
|
### 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
|
### composer
|
||||||
|
|
||||||
|
|
|
@ -125,7 +125,7 @@ export async function updateArtifacts(
|
||||||
];
|
];
|
||||||
|
|
||||||
const bundlerHostRules = findAllAuthenticatable({
|
const bundlerHostRules = findAllAuthenticatable({
|
||||||
hostType: 'bundler',
|
hostType: 'rubygems',
|
||||||
});
|
});
|
||||||
|
|
||||||
const bundlerHostRulesVariables = bundlerHostRules.reduce(
|
const bundlerHostRulesVariables = bundlerHostRules.reduce(
|
||||||
|
|
Loading…
Reference in a new issue