Skip to content

Commit 714c01d

Browse files
committed
lint
1 parent d85ad8f commit 714c01d

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

tools/windows/DatadogAgentInstaller/CustomActions/InstallOciPackages.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ private bool ShouldPurge()
3838
private Dictionary<string, string> InstallerEnvironmentVariables()
3939
{
4040
var env = new Dictionary<string, string>();
41-
41+
4242
// Skip agent installation - we only want the OCI packages
4343
env["DD_NO_AGENT_INSTALL"] = "true";
44-
44+
4545
if (!string.IsNullOrEmpty(_apiKey))
4646
{
4747
env["DD_API_KEY"] = _apiKey;
@@ -54,20 +54,20 @@ private Dictionary<string, string> InstallerEnvironmentVariables()
5454
{
5555
env["DD_INSTALLER_REGISTRY_URL"] = _overrideRegistryUrl;
5656
}
57-
57+
5858
// Add APM instrumentation configuration
5959
var instrumentationEnabled = _session.Property("DD_APM_INSTRUMENTATION_ENABLED");
6060
if (!string.IsNullOrEmpty(instrumentationEnabled))
6161
{
6262
env["DD_APM_INSTRUMENTATION_ENABLED"] = instrumentationEnabled;
6363
}
64-
64+
6565
var libraries = _session.Property("DD_APM_INSTRUMENTATION_LIBRARIES");
6666
if (!string.IsNullOrEmpty(libraries))
6767
{
6868
env["DD_APM_INSTRUMENTATION_LIBRARIES"] = libraries;
6969
}
70-
70+
7171
return env;
7272
}
7373
private Dictionary<string, string> PurgeEnvironmentVariables()

tools/windows/DatadogAgentInstaller/WixSetup/Datadog Agent/AgentCustomActions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ public AgentCustomActions()
510510
Impersonate = false
511511
}
512512
.SetProperties("PROJECTLOCATION=[PROJECTLOCATION],SITE=[SITE],APIKEY=[APIKEY]");
513-
513+
514514
PurgeOciPackages = new CustomAction<CustomActions>(
515515
new Id(nameof(PurgeOciPackages)),
516516
CustomActions.PurgeOciPackages,

0 commit comments

Comments
 (0)