Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
Prefer User Directory for Projects into containers (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotalik authored Jun 9, 2020
1 parent a60099f commit 0ebb615
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class TransformProjectsIntoContainers : IApplicationProcessor
public TransformProjectsIntoContainers(ILogger logger)
{
_logger = logger;
_certificateDirectory = new Lazy<TempDirectory>(() => TempDirectory.Create());
_certificateDirectory = new Lazy<TempDirectory>(() => TempDirectory.Create(preferUserDirectoryOnMacOS: true));
}

public Task StartAsync(Application application)
Expand Down

0 comments on commit 0ebb615

Please sign in to comment.