Skip to content

Commit

Permalink
VCI-151: Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krankenbro committed Apr 11, 2024
1 parent f317320 commit 564be6e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Linq;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using Extensions;
using Nuke.Common.IO;
using Octokit;
using PlatformTools.Modules;
Expand Down Expand Up @@ -34,7 +35,7 @@ protected override async Task InnerInstall(ModuleSource source, IProgress<Progre
progress.ReportInfo($"Installing {module.Id}");
moduleDestination.CreateOrCleanDirectory();
var zipName = $"{module.Id}.zip";
var zipDestination = Path.Join(moduleDestination, zipName);
var zipDestination = Path.Join(moduleDestination, zipName).ToAbsolutePath();
var release = await _client.Repository.Release.Get(githubPrivateRepos.Owner, module.Id, module.Version);
if (release == null)
{
Expand Down

0 comments on commit 564be6e

Please sign in to comment.