Skip to content

Commit

Permalink
fix: Issue with docker detection due to extra whitepace added to cont…
Browse files Browse the repository at this point in the history
…ainer type field
  • Loading branch information
normj committed Oct 27, 2021
1 parent 99f9be2 commit 3973b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AWS.Deploy.Orchestration/SystemCapabilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public DockerInfo(
string dockerContainerType)
{
DockerInstalled = dockerInstalled;
DockerContainerType = dockerContainerType;
DockerContainerType = dockerContainerType.Trim();
}
}

Expand Down

0 comments on commit 3973b24

Please sign in to comment.