Skip to content

Commit

Permalink
fix pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
ryfu-msft committed Oct 30, 2024
1 parent ead06d3 commit 3880b59
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ internal class AppxModuleHelper

// Assets
private const string MsixBundleName = "Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle";
private const string DependenciesAssetName = "DesktopAppInstaller_Dependencies";
private const string DependenciesJsonName = "DesktopAppInstaller_Dependencies.json";
private const string DependenciesZipName = "DesktopAppInstaller_Dependencies.zip";
private const string License = "License1.xml";
Expand Down Expand Up @@ -503,7 +502,7 @@ private async Task<bool> InstallDependenciesFromGitHubArchive(string releaseTag)

foreach (var entry in missingDependencies)
{
string fullPath = System.IO.Path.Combine(extractedDirectory.FullDirectoryPath, DependenciesAssetName, entry);
string fullPath = System.IO.Path.Combine(extractedDirectory.FullDirectoryPath, entry);
if (!File.Exists(fullPath))
{
this.pwshCmdlet.Write(StreamType.Verbose, $"Package dependency not found in archive: {fullPath}");
Expand Down

0 comments on commit 3880b59

Please sign in to comment.