Skip to content

Commit

Permalink
Bug #89: Create default output folder Environment.SpecialFolder.Local…
Browse files Browse the repository at this point in the history
…ApplicationData if it doesn't exist (#91)
  • Loading branch information
erikbra authored Oct 11, 2021
1 parent aa4e37a commit 3401f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grate/Configuration/DefaultConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static class DefaultConfiguration
public static readonly string DefaultVersionXPath = @"//buildInfo/version";
public static readonly string DefaultFilesDirectory = @".";
public static readonly string DefaultServerName = "(local)";
public static readonly string DefaultOutputPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "grate");
public static readonly string DefaultOutputPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData, Environment.SpecialFolderOption.Create), "grate");
public static readonly string LoggingFile = @"C:\Temp\grate\grate.changes.log";
public static readonly int DefaultCommandTimeout = 60;
public static readonly int DefaultAdminCommandTimeout = 300;
Expand Down

0 comments on commit 3401f57

Please sign in to comment.