Skip to content

Commit

Permalink
chore: fix spelling of Buildkite (#24558)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanitoFatas committed Sep 21, 2023
1 parent ebcc608 commit eb63408
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/modules/manager/buildkite/extract.ts
Expand Up @@ -24,7 +24,7 @@ export function extractPackageFile(
logger.trace('depLineMatch');
let skipReason: SkipReason | undefined;
let repo: string | undefined;
logger.trace(`Found BuildKite plugin ${depName}`);
logger.trace(`Found Buildkite plugin ${depName}`);
// Plugins may simply be git repos. If so, we need to parse out the registry.
const gitPluginMatch = regEx(
/(ssh:\/\/git@|https:\/\/)(?<registry>[^/]+)\/(?<gitPluginName>.*)/
Expand All @@ -50,13 +50,13 @@ export function extractPackageFile(
} else {
logger.warn(
{ dependency: depName },
'Something is wrong with BuildKite plugin name'
'Something is wrong with Buildkite plugin name'
);
skipReason = 'invalid-dependency-specification';
}
} else {
logger.debug(
`Skipping non-pinned buildkite current version ${currentValue}`
`Skipping non-pinned Buildkite current version ${currentValue}`
);
skipReason = 'invalid-version';
}
Expand All @@ -73,7 +73,7 @@ export function extractPackageFile(
}
}
} catch (err) /* istanbul ignore next */ {
logger.debug({ err, packageFile }, 'Error extracting BuildKite plugins');
logger.debug({ err, packageFile }, 'Error extracting Buildkite plugins');
}

if (!deps.length) {
Expand Down

0 comments on commit eb63408

Please sign in to comment.