Skip to content

Commit

Permalink
VCI-648: Add a log message for modules from github private repos (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
krankenbro authored Aug 7, 2023
1 parent d8a54a9 commit d0575e1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ protected override async Task InnerInstall(ModuleSource source)
foreach (var module in githubPrivateRepos.Modules)
{
var moduleDestination = Path.Join(_discoveryPath, module.Id);
Log.Information($"Installing {module.Id}");
Directory.CreateDirectory(moduleDestination);
FileSystemTasks.EnsureCleanDirectory(moduleDestination);
var zipName = $"{module.Id}.zip";
Expand Down

0 comments on commit d0575e1

Please sign in to comment.