From 882fe3ecb8c15ce9ce0b48da31a4f91fd6ddde37 Mon Sep 17 00:00:00 2001 From: Ankit Kumar Date: Thu, 6 Sep 2018 15:27:58 -0700 Subject: [PATCH] Fixes #701 - minor directory naming bug --- .../Common/SelfHostWebHostSettingsFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Azure.Functions.Cli/Common/SelfHostWebHostSettingsFactory.cs b/src/Azure.Functions.Cli/Common/SelfHostWebHostSettingsFactory.cs index 9d7a7abcb..c135b8932 100644 --- a/src/Azure.Functions.Cli/Common/SelfHostWebHostSettingsFactory.cs +++ b/src/Azure.Functions.Cli/Common/SelfHostWebHostSettingsFactory.cs @@ -12,7 +12,7 @@ public static ScriptApplicationHostOptions Create(string scriptPath) { IsSelfHost = true, ScriptPath = scriptPath, - LogPath = Path.Combine(Path.GetTempPath(), @"LogFiles\Application\Functions"), + LogPath = Path.Combine(Path.GetTempPath(), "LogFiles", "Application", "Functions"), SecretsPath = Path.Combine(Path.GetTempPath(), "secrets", "functions", "secrets") }; }