Skip to content

Commit

Permalink
add missing $ in the template string
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo authored and ahmelsayed committed Nov 10, 2017
1 parent 913756b commit 9cfa988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Azure.Functions.Cli/Common/TemplatesManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public async Task Deploy(string Name, Template template)
var response = "n";
do
{
ColoredConsole.Write("A directory with the name {Name} already exists. Overwrite [y/n]? [n] ");
ColoredConsole.Write($"A directory with the name {Name} already exists. Overwrite [y/n]? [n] ");
response = Console.ReadLine();
} while (response != "n" && response != "y");
if (response == "n")
Expand Down

0 comments on commit 9cfa988

Please sign in to comment.