Browse Source

trim quotes from env file value

pull/394/head
Kyle Spearrin 7 years ago
parent
commit
f60d6d92f8
  1. 2
      util/Setup/Helpers.cs

2
util/Setup/Helpers.cs

@ -105,7 +105,7 @@ namespace Bit.Setup @@ -105,7 +105,7 @@ namespace Bit.Setup
{
if(line.StartsWith($"{key}="))
{
return line.Split(new char[] { '=' }, 2)[1];
return line.Split(new char[] { '=' }, 2)[1].Trim('"');
}
}

Loading…
Cancel
Save