Skip to content

Commit 882fe3e

Browse files
committed
Fixes #701 - minor directory naming bug
1 parent 10992ca commit 882fe3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public static ScriptApplicationHostOptions Create(string scriptPath)
1212
{
1313
IsSelfHost = true,
1414
ScriptPath = scriptPath,
15-
LogPath = Path.Combine(Path.GetTempPath(), @"LogFiles\Application\Functions"),
15+
LogPath = Path.Combine(Path.GetTempPath(), "LogFiles", "Application", "Functions"),
1616
SecretsPath = Path.Combine(Path.GetTempPath(), "secrets", "functions", "secrets")
1717
};
1818
}

0 commit comments

Comments
 (0)