diff --git a/Framework/GethConnector/GethInput.cs b/Framework/GethConnector/GethInput.cs index e38af8a4..968aec29 100644 --- a/Framework/GethConnector/GethInput.cs +++ b/Framework/GethConnector/GethInput.cs @@ -46,7 +46,7 @@ { var result = Environment.GetEnvironmentVariable(name); if (string.IsNullOrEmpty(result)) error.Add($"'{name}' is not set."); - return result; + return result.Trim(); } } }