Skip to content

Commit 9cfa988

Browse files
jdneoahmelsayed
authored andcommitted
add missing $ in the template string
1 parent 913756b commit 9cfa988

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Azure.Functions.Cli/Common/TemplatesManager.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public async Task Deploy(string Name, Template template)
3939
var response = "n";
4040
do
4141
{
42-
ColoredConsole.Write("A directory with the name {Name} already exists. Overwrite [y/n]? [n] ");
42+
ColoredConsole.Write($"A directory with the name {Name} already exists. Overwrite [y/n]? [n] ");
4343
response = Console.ReadLine();
4444
} while (response != "n" && response != "y");
4545
if (response == "n")

0 commit comments

Comments
 (0)