Skip to content

Commit

Permalink
Fixes #701 - minor directory naming bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitkumarr committed Sep 6, 2018
1 parent 10992ca commit 882fe3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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")
};
}
Expand Down

0 comments on commit 882fe3e

Please sign in to comment.