From 6447501df8e92bc4bc79b18ddbadd8a2e769473e Mon Sep 17 00:00:00 2001 From: Alex Shovlin Date: Tue, 19 Dec 2023 23:32:57 -0500 Subject: [PATCH] Add padding to search for ".NET " instead of ".NET" --- src/AWS.Deploy.Constants/ElasticBeanstalk.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AWS.Deploy.Constants/ElasticBeanstalk.cs b/src/AWS.Deploy.Constants/ElasticBeanstalk.cs index a9bc57dc..fde11439 100644 --- a/src/AWS.Deploy.Constants/ElasticBeanstalk.cs +++ b/src/AWS.Deploy.Constants/ElasticBeanstalk.cs @@ -22,7 +22,7 @@ internal static class ElasticBeanstalk public const string HealthCheckURLOptionNameSpace = "aws:elasticbeanstalk:application"; public const string HealthCheckURLOptionName = "Application Healthcheck URL"; - public const string LinuxPlatformType = ".NET"; + public const string LinuxPlatformType = ".NET "; public const string WindowsPlatformType = "Windows Server"; public const string IISAppPathOptionId = "IISAppPath";