From fc0a1481da66c463085389f935d08fae493de734 Mon Sep 17 00:00:00 2001 From: Andrew Lock Date: Tue, 25 Feb 2025 11:14:17 +0000 Subject: [PATCH] Update return code --- tracer/src/Datadog.FleetInstaller/ReturnCode.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tracer/src/Datadog.FleetInstaller/ReturnCode.cs b/tracer/src/Datadog.FleetInstaller/ReturnCode.cs index b84dce65df2c..2444c9897864 100644 --- a/tracer/src/Datadog.FleetInstaller/ReturnCode.cs +++ b/tracer/src/Datadog.FleetInstaller/ReturnCode.cs @@ -10,12 +10,12 @@ internal enum ReturnCode // The order of these values is important, as they are used to determine the exit code of the process // We should always add new error values to the end and not re-order them Success = 0, - ErrorDuringPrerequisiteVerification, // Not explicitly called, but equivalent + ErrorDuringPrerequisiteVerification = 1, // Not explicitly called, but equivalent + ErrorRemovingNativeLoaderFiles = 2, // Must not change, special-case handled by fleet installer as it means "don't remove the files" ErrorDuringGacInstallation, ErrorDuringGacUninstallation, ErrorSettingAppPoolVariables, ErrorRemovingAppPoolVariables, - ErrorRemovingNativeLoaderFiles, ErrorRemovingCrashTrackerKey, ErrorReadingIisConfiguration, }