Skip to content

Commit

Permalink
Enabled use of Evolve CLI Placeholders with ':' in their value (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zarun1 committed Feb 28, 2023
1 parent e53c539 commit 059610f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Evolve.Cli/EvolveFactory.cs
Expand Up @@ -114,7 +114,7 @@ private static DbConnection CreateConnection(Program options)
{
try
{
return placeholders.Select(i => i.Split(':')).ToDictionary(i => prefix + i[0] + suffix, i => i[1]);
return placeholders.Select(i => i.Split(':', 2)).ToDictionary(i => prefix + i[0] + suffix, i => i[1]);
}
catch
{
Expand Down

0 comments on commit 059610f

Please sign in to comment.