From c746951f0134d96894c35d431673278a04cd1dbb Mon Sep 17 00:00:00 2001 From: Clay Johnson Date: Tue, 10 Jun 2025 14:34:24 -0500 Subject: [PATCH] Remove double `_` characters from Injection env vars --- sources/src/develocity/build-scan.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sources/src/develocity/build-scan.ts b/sources/src/develocity/build-scan.ts index 0640f465..f644204c 100644 --- a/sources/src/develocity/build-scan.ts +++ b/sources/src/develocity/build-scan.ts @@ -19,13 +19,13 @@ export async function setup(config: BuildScanConfig): Promise { maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENFORCE_URL', config.getDevelocityEnforceUrl()) maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion()) maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_CCUD_PLUGIN_VERSION', config.getDevelocityCcudPluginVersion()) - maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl()) + maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl()) maybeExportVariableNotEmpty( - 'DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_USERNAME', + 'DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername() ) maybeExportVariableNotEmpty( - 'DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_PASSWORD', + 'DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword() )