refactor: Do not create the RepoDirectory on start up

Let the GitRepositoryFactory do it.
pull/151/head
Robert Dailey 2 years ago
parent 794c8733ef
commit 6811c2c816

@ -19,7 +19,7 @@ public class AppPathSetupTask : IBaseCommandSetupTask
_log.Debug("App Data Dir: {AppData}", _paths.AppDataDirectory);
// Initialize other directories used throughout the application
_paths.RepoDirectory.Create();
// Do not initialize the repo directory here; the GitRepositoryFactory handles that later.
_paths.CacheDirectory.Create();
_paths.LogDirectory.Create();
_paths.ConfigsDirectory.Create();

Loading…
Cancel
Save